mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
12 lines
235 B
Ruby
12 lines
235 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Api
|
|
class ShipmentSerializer < ActiveModel::Serializer
|
|
attributes :id, :tracking, :number, :order_id, :cost, :shipped_at, :state
|
|
|
|
def order_id
|
|
object.order.number
|
|
end
|
|
end
|
|
end
|