The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

19 řádky
371 B

  1. # frozen_string_literal: true
  2. module Admin
  3. class FollowersController < BaseController
  4. before_action :set_account
  5. PER_PAGE = 40
  6. def index
  7. authorize :account, :index?
  8. @followers = @account.followers.local.recent.page(params[:page]).per(PER_PAGE)
  9. end
  10. def set_account
  11. @account = Account.find(params[:account_id])
  12. end
  13. end
  14. end