mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
10 lines
247 B
Ruby
10 lines
247 B
Ruby
module Api
|
|
class OrderCyclesController < Spree::Api::BaseController
|
|
respond_to :json
|
|
def managed
|
|
@order_cycles = OrderCycle.ransack(params[:q]).result.managed_by(current_api_user)
|
|
render :bulk_index
|
|
end
|
|
end
|
|
end
|
|
|