Files
openfoodnetwork/app/controllers/api/enterprises_controller.rb
2014-04-11 19:08:55 +10:00

11 lines
247 B
Ruby

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