metamaps--metamaps/app/serializers/new_synapse_serializer.rb

15 lines
424 B
Ruby
Raw Normal View History

2016-03-11 22:48:07 +00:00
class NewSynapseSerializer < ActiveModel::Serializer
embed :ids, include: true
attributes :id,
:desc,
:category,
:weight,
:permission,
:created_at,
:updated_at
2016-03-11 22:48:07 +00:00
has_one :topic1, root: :topics, serializer: NewTopicSerializer
has_one :topic2, root: :topics, serializer: NewTopicSerializer
has_one :user, serializer: NewUserSerializer
end