Files
openfoodnetwork/app/serializers/api/address_serializer.rb

11 lines
195 B
Ruby

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