metamaps--metamaps/app/serializers/api/v1/map_serializer.rb

20 lines
534 B
Ruby
Raw Normal View History

2016-08-20 12:32:18 +08:00
module Api
module V1
class MapSerializer < ActiveModel::Serializer
attributes :id,
:name,
:desc,
:permission,
:screenshot,
:created_at,
:updated_at
has_many :topics, serializer: TopicSerializer
has_many :synapses, serializer: SynapseSerializer
has_many :mappings, serializer: MappingSerializer
has_many :contributors, root: :users, serializer: UserSerializer
has_many :collaborators, root: :users, serializer: UserSerializer
end
end
end