Skip to content

Instantly share code, notes, and snippets.

@Killavus
Created March 1, 2016 01:02
Show Gist options
  • Select an option

  • Save Killavus/adc0637872b3678dd752 to your computer and use it in GitHub Desktop.

Select an option

Save Killavus/adc0637872b3678dd752 to your computer and use it in GitHub Desktop.
Base Serializer
class BaseSerializer
def serialize_relationship(name, collection)
collection.map do |rel|
{ id: rel.id, type: name }
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment