Files
openfoodnetwork/app/serializers/api/address_serializer.rb
2014-07-30 17:09:31 +10:00

11 lines
206 B
Ruby

class Api::AddressSerializer < ActiveModel::Serializer
cached
delegate :cache_key, to: :object
attributes :id, :zipcode, :city, :state, :state_id
def state
object.state.andand.abbr
end
end