mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-06 22:36:07 +00:00
12 lines
212 B
Ruby
12 lines
212 B
Ruby
class Api::OrderCycleSerializer < ActiveModel::Serializer
|
|
attributes :order_cycle_id, :orders_close_at
|
|
|
|
def order_cycle_id
|
|
object.id
|
|
end
|
|
|
|
def orders_close_at
|
|
object.orders_close_at.to_s
|
|
end
|
|
end
|