mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
11 lines
188 B
Ruby
11 lines
188 B
Ruby
class Api::AddressSerializer < ActiveModel::Serializer
|
|
cached
|
|
delegate :cache_key, to: :object
|
|
|
|
attributes :id, :zipcode, :city, :state
|
|
|
|
def state
|
|
object.state.abbr
|
|
end
|
|
end
|