mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-28 21:07:16 +00:00
9 lines
218 B
Ruby
9 lines
218 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class VariantSerializer < ActiveModel::Serializer
|
|
attributes :id, :display_name, :options_text
|
|
has_one :product, serializer: Invoice::ProductSerializer
|
|
end
|
|
end
|