mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-01 21:47:16 +00:00
5 lines
232 B
Ruby
5 lines
232 B
Ruby
class Api::MasterVariantSerializer < ActiveModel::Serializer
|
|
attributes :id, :is_master, :count_on_hand, :name_to_display, :unit_to_display, :count_on_hand, :on_demand
|
|
has_many :images, serializer: Api::TaxonImageSerializer
|
|
end
|