mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
16 lines
384 B
Ruby
16 lines
384 B
Ruby
|
# 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
|