about summary refs log tree commit diff
path: root/app/controllers/admin/followers_controller.rb
blob: 819628b2011b576bbbd501384d667e0e16229a35 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module Admin
  class FollowersController < BaseController
    before_action :set_account

    PER_PAGE = 40

    def index
      authorize :account, :index?
      @followers = followers.recent.page(params[:page]).per(PER_PAGE)
    end

    def set_account
      @account = Account.find(params[:account_id])
    end

    def followers
      Follow.includes(:account).where(target_account: @account)
    end
  end
end