mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
5 lines
145 B
Ruby
5 lines
145 B
Ruby
class Api::CountrySerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :states
|
|
|
|
has_many :states, serializer: Api::StateSerializer
|
|
end |