metamaps--metamaps/app/serializers/api/v2/mapping_serializer.rb
2016-09-24 11:00:46 +08:00

27 lines
545 B
Ruby

# frozen_string_literal: true
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
class_eval do
embed_dat
end
end
end
end