mirror of
https://github.com/mastodon/mastodon.git
synced 2024-11-08 00:43:15 +00:00
a0b1951791
* Set domain_block by before_action * Cast value with ActiveRecord::Type * Batch update
18 lines
388 B
Ruby
18 lines
388 B
Ruby
# frozen_string_literal: true
|
|
|
|
class UnblockDomainService < BaseService
|
|
def call(domain_block, retroactive)
|
|
if retroactive
|
|
accounts = Account.where(domain: domain_block.domain).in_batches
|
|
|
|
if domain_block.silence?
|
|
accounts.update_all(silenced: false)
|
|
else
|
|
accounts.update_all(suspended: false)
|
|
end
|
|
end
|
|
|
|
domain_block.destroy
|
|
end
|
|
end
|