mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-09 23:06:06 +00:00
9 lines
194 B
Ruby
9 lines
194 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class ProductSerializer < ActiveModel::Serializer
|
|
attributes :name
|
|
has_one :supplier, serializer: Invoice::EnterpriseSerializer
|
|
end
|
|
end
|