mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-27 21:06:49 +00:00
9 lines
259 B
Ruby
9 lines
259 B
Ruby
# frozen_string_literal: false
|
|
|
|
class Invoice
|
|
class AddressSerializer < ActiveModel::Serializer
|
|
attributes :firstname, :lastname, :address1, :address2, :city, :zipcode, :phone, :company
|
|
has_one :state, serializer: Invoice::StateSerializer
|
|
end
|
|
end
|