diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-19 22:54:40 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-03-19 22:54:40 +0100 |
commit | e14b76c7cb07c3ebc01a17991df9fe5b69d1b5bc (patch) | |
tree | 34bc7503201be499a59a7a024e7b5dc11d633018 /app/controllers | |
parent | 7e53efae31fee3ce511d187cf0bc68847cb19648 (diff) |
On following/followers pages, show most recent first
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/accounts_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/accounts_controller.rb b/app/controllers/accounts_controller.rb index 374591a5c..50b5c08e6 100644 --- a/app/controllers/accounts_controller.rb +++ b/app/controllers/accounts_controller.rb @@ -14,11 +14,11 @@ class AccountsController < ApplicationController end def followers - @followers = @account.followers.paginate(page: params[:page], per_page: 6) + @followers = @account.followers.order('follows.created_at desc').paginate(page: params[:page], per_page: 6) end def following - @following = @account.following.paginate(page: params[:page], per_page: 6) + @following = @account.following.order('follows.created_at desc').paginate(page: params[:page], per_page: 6) end private |