2017-04-23 15:38:37 -07:00
# frozen_string_literal: true
2018-12-12 13:32:13 -08:00
class Settings :: FollowerDomainsController < Settings :: BaseController
2017-04-23 15:38:37 -07:00
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 ] || [ ]
2018-06-09 13:46:54 -07:00
AfterAccountDomainBlockWorker . push_bulk ( domains ) do | domain |
2017-06-03 15:11:15 -07:00
[ 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