You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
317 B

# frozen_string_literal: true
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')
end
end