diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-21 17:33:04 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-21 17:33:04 +0100 |
commit | c28971c70c3d5caf18a5e931ff345534f1e4cece (patch) | |
tree | 58e0e8772bc4a52490e75e20284269c0ed4f43a3 /app/controllers/api | |
parent | 5b10329394ae2ad76bcf1e613edd6e7d4b82b210 (diff) |
Fixed the lookup API method
Diffstat (limited to 'app/controllers/api')
-rw-r--r-- | app/controllers/api/accounts/lookup_controller.rb | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/controllers/api/accounts/lookup_controller.rb b/app/controllers/api/accounts/lookup_controller.rb index dc8bcb132..319401a2e 100644 --- a/app/controllers/api/accounts/lookup_controller.rb +++ b/app/controllers/api/accounts/lookup_controller.rb @@ -1,4 +1,7 @@ -class Api::Accounts::LookupController < ApplicationController +class Api::Accounts::LookupController < ApiController + before_action :doorkeeper_authorize! + respond_to :json + def index @accounts = Account.where(domain: nil).where(username: lookup_params) end |