mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
13 lines
282 B
Ruby
13 lines
282 B
Ruby
module Spree
|
|
module Api
|
|
class EnterprisesController < Spree::Api::BaseController
|
|
respond_to :json
|
|
|
|
def managed
|
|
@enterprises = Enterprise.ransack(params[:q]).result.managed_by(current_api_user)
|
|
respond_with(@enterprises)
|
|
end
|
|
end
|
|
end
|
|
end
|