mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
6 lines
146 B
Ruby
6 lines
146 B
Ruby
class Api::CountrySerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :states
|
|
|
|
has_many :states, serializer: Api::StateSerializer
|
|
end
|