mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
14 lines
296 B
Ruby
14 lines
296 B
Ruby
module Api
|
|
class ShipmentSerializer < ActiveModel::Serializer
|
|
attributes :id, :tracking, :number, :order_id, :cost, :shipped_at, :stock_location_name, :state
|
|
|
|
def order_id
|
|
object.order.number
|
|
end
|
|
|
|
def stock_location_name
|
|
object.stock_location.name
|
|
end
|
|
end
|
|
end
|