You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
384 B
16 lines
384 B
8 years ago
|
# frozen_string_literal: true
|
||
|
|
||
|
class UnblockDomainService < BaseService
|
||
|
def call(domain_block, retroactive)
|
||
|
if retroactive
|
||
|
if domain_block.silence?
|
||
|
Account.where(domain: domain_block.domain).update_all(silenced: false)
|
||
|
else
|
||
|
Account.where(domain: domain_block.domain).update_all(suspended: false)
|
||
|
end
|
||
|
end
|
||
|
|
||
|
domain_block.destroy
|
||
|
end
|
||
|
end
|