Files
openfoodnetwork/app/serializers/api/adjustment_serializer.rb
2021-04-14 12:01:21 +01:00

8 lines
221 B
Ruby

module Api
class AdjustmentSerializer < ActiveModel::Serializer
attributes :id, :amount, :label, :eligible,
:adjustable_type, :adjustable_id,
:originator_type, :originator_id
end
end