mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
8 lines
209 B
Ruby
8 lines
209 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Api::LineItemSerializer < ActiveModel::Serializer
|
|
attributes :id, :quantity, :max_quantity, :price, :order_id
|
|
|
|
has_one :variant, serializer: Api::VariantSerializer
|
|
end
|