metamaps--metamaps/app/serializers/api/v2/mapping_serializer.rb

26 lines
484 B
Ruby
Raw Normal View History

module Api
module V2
class MappingSerializer < ApplicationSerializer
attributes :id,
:created_at,
:updated_at,
:mappable_id,
:mappable_type
attribute :xloc, if: -> { object.mappable_type == 'Topic' }
attribute :yloc, if: -> { object.mappable_type == 'Topic' }
def self.embeddable
{
user: {},
map: {}
}
end
self.class_eval do
embed_dat
end
end
end
end