mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-15 23:57:48 +00:00
8 lines
159 B
Ruby
8 lines
159 B
Ruby
module Spree
|
|
class VariantSerializer < ActiveModel::Serializer
|
|
attributes :id, :is_master, :count_on_hand, :options_text
|
|
has_many :images
|
|
end
|
|
end
|
|
|