mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
14 lines
345 B
Ruby
14 lines
345 B
Ruby
module Api
|
|
module Admin
|
|
class ScheduleSerializer < ActiveModel::Serializer
|
|
attributes :id, :name, :order_cycle_ids, :viewing_as_coordinator
|
|
|
|
has_many :order_cycles, serializer: Api::Admin::IdNameSerializer
|
|
|
|
def viewing_as_coordinator
|
|
options[:editable_schedule_ids].include? object.id
|
|
end
|
|
end
|
|
end
|
|
end
|