]> cat aescling's git repositories - mastodon.git/commitdiff
Remove uneeded `ORDER BY` query (#2615)
authoralpaca-tc <alpaca-tc@alpaca.tc>
Sat, 29 Apr 2017 08:50:10 +0000 (17:50 +0900)
committerEugen Rochko <eugen@zeonfederated.com>
Sat, 29 Apr 2017 08:50:10 +0000 (10:50 +0200)
app/controllers/follower_accounts_controller.rb
app/controllers/following_accounts_controller.rb

index 165cbf1b56e5f8652ddf84773214a66c40580e20..25c7a893a08fab0c5aaebbc6693880f0e0c26a9e 100644 (file)
@@ -4,12 +4,6 @@ class FollowerAccountsController < ApplicationController
   include AccountControllerConcern
 
   def index
-    @accounts = ordered_accounts.page(params[:page]).per(FOLLOW_PER_PAGE)
-  end
-
-  private
-
-  def ordered_accounts
-    @account.followers.order('follows.created_at desc')
+    @accounts = @account.followers.page(params[:page]).per(FOLLOW_PER_PAGE)
   end
 end
index faeea144ac426f2d091275f2d1e77fc5c1d63f6f..0a80626809fc692c891d7e2452beb524ef756650 100644 (file)
@@ -4,12 +4,6 @@ class FollowingAccountsController < ApplicationController
   include AccountControllerConcern
 
   def index
-    @accounts = ordered_accounts.page(params[:page]).per(FOLLOW_PER_PAGE)
-  end
-
-  private
-
-  def ordered_accounts
-    @account.following.order('follows.created_at desc')
+    @accounts = @account.following.page(params[:page]).per(FOLLOW_PER_PAGE)
   end
 end