This repository has been archived on 2024-07-22 . You can view files and clone it, but cannot push or open issues or pull requests.
2017-04-23 15:38:37 -07:00
# frozen_string_literal: true
class Settings :: FollowerDomainsController < ApplicationController
layout 'admin'
before_action :authenticate_user!
def show
@account = current_account
2018-04-12 05:45:17 -07:00
@domains = current_account . followers . reorder ( Arel . sql ( 'MIN(follows.id) DESC' ) ) . group ( 'accounts.domain' ) . select ( 'accounts.domain, count(accounts.id) as accounts_from_domain' ) . page ( params [ :page ] ) . per ( 10 )
2017-04-23 15:38:37 -07:00
end
def update
domains = bulk_params [ :select ] || [ ]
2017-06-03 15:11:15 -07:00
SoftBlockDomainFollowersWorker . push_bulk ( domains ) do | domain |
[ current_account . id , domain ]
2017-04-23 15:38:37 -07:00
end
redirect_to settings_follower_domains_path , notice : I18n . t ( 'followers.success' , count : domains . size )
end
private
def bulk_params
params . permit ( select : [ ] )
end
end