metamaps--metamaps/app/serializers/new_mapping_serializer.rb
2016-03-12 09:48:07 +11:00

18 lines
488 B
Ruby

class NewMappingSerializer < ActiveModel::Serializer
embed :ids, include: true
attributes :id,
:xloc,
:yloc,
:created_at,
:updated_at
has_one :user, serializer: NewUserSerializer
has_one :map, serializer: NewMapSerializer
has_one :mappable, polymorphic: true ##?
def filter(keys)
keys.delete(:xloc) unless object.mappable_type == "Topic"
keys.delete(:yloc) unless object.mappable_type == "Topic"
keys
end
end