mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-09 23:06:06 +00:00
11 lines
250 B
Ruby
11 lines
250 B
Ruby
module Admin
|
|
class OrderCyclesController < ResourceController
|
|
before_filter :load_order_cycle_set, :only => :index
|
|
|
|
private
|
|
def load_order_cycle_set
|
|
@order_cycle_set = OrderCycleSet.new :collection => collection
|
|
end
|
|
end
|
|
end
|