mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
8 lines
143 B
Ruby
8 lines
143 B
Ruby
class Api::AddressSerializer < ActiveModel::Serializer
|
|
attributes :id, :zipcode, :city, :state
|
|
|
|
def state
|
|
object.state.abbr
|
|
end
|
|
end
|