Files
openfoodnetwork/app/serializers/spree/variant_serializer.rb
2013-12-17 14:04:36 +11:00

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