On following/followers pages, show most recent first
This commit is contained in:
		@ -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
 | 
			
		||||
 | 
			
		||||
		Reference in New Issue
	
	Block a user