about summary refs log tree commit diff
path: root/app/controllers/api/v1/accounts_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-11-24 23:46:27 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-11-24 23:46:27 +0100
commit8efa081f210d72ed450c39ac4cde0fd84fb3d3fb (patch)
tree8be3c14b6b5e94d3d8ce7093bf7117bd7c87e346 /app/controllers/api/v1/accounts_controller.rb
parentfca183968e4a868c8930ba3ac8fe22cef0c07f54 (diff)
Remove Neo4J
Diffstat (limited to 'app/controllers/api/v1/accounts_controller.rb')
-rw-r--r--app/controllers/api/v1/accounts_controller.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/app/controllers/api/v1/accounts_controller.rb b/app/controllers/api/v1/accounts_controller.rb
index 4ae900583..5546ee588 100644
--- a/app/controllers/api/v1/accounts_controller.rb
+++ b/app/controllers/api/v1/accounts_controller.rb
@@ -46,16 +46,6 @@ class Api::V1::AccountsController < ApiController
     render action: :index
   end
 
-  def common_followers
-    @accounts = @account.common_followers_with(current_user.account)
-    render action: :index
-  end
-
-  def suggestions
-    @accounts = FollowSuggestion.get(current_user.account_id)
-    render action: :index
-  end
-
   def statuses
     @statuses = @account.statuses.paginate_by_max_id(DEFAULT_STATUSES_LIMIT, params[:max_id], params[:since_id]).to_a
     @statuses = cache(@statuses)