about summary refs log tree commit diff
path: root/app/controllers/api/accounts/lookup_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/api/accounts/lookup_controller.rb')
-rw-r--r--app/controllers/api/accounts/lookup_controller.rb14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/controllers/api/accounts/lookup_controller.rb b/app/controllers/api/accounts/lookup_controller.rb
deleted file mode 100644
index 319401a2e..000000000
--- a/app/controllers/api/accounts/lookup_controller.rb
+++ /dev/null
@@ -1,14 +0,0 @@
-class Api::Accounts::LookupController < ApiController
-  before_action :doorkeeper_authorize!
-  respond_to    :json
-
-  def index
-    @accounts = Account.where(domain: nil).where(username: lookup_params)
-  end
-
-  private
-
-  def lookup_params
-    (params[:usernames] || '').split(',').map(&:strip)
-  end
-end