51fa8f2eb4
• Added: - New Account filtering - PreviewCard viewing/sorting/filtering deleting (todo) - DeletePreviewCardWorker, Service - Status viewing/sorting/filtering deleting - ChatMessage viewing/sorting/filtering deleting (todo) - Account > Follows view • Updated: - LinkBlock to sort alphabetically - Groups to be under "Moderation" instead of "Admin" in navigation.rb - Status in admin to have group name/link - Reports reset button - Group filtering/sorting - LinkBlock filtering/sorting - Account now has bio and few more data points in dashboard
19 lines
367 B
Ruby
19 lines
367 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Admin
|
|
class FollowsController < BaseController
|
|
before_action :set_account
|
|
|
|
PER_PAGE = 40
|
|
|
|
def index
|
|
authorize :account, :index?
|
|
@follows = @account.following.local.recent.page(params[:page]).per(PER_PAGE)
|
|
end
|
|
|
|
def set_account
|
|
@account = Account.find(params[:account_id])
|
|
end
|
|
end
|
|
end
|