mastodon/app/services/unallow_domain_service.rb

19 lines
406 B
Ruby
Raw Normal View History

2019-07-30 09:10:46 +00:00
# frozen_string_literal: true
class UnallowDomainService < BaseService
include DomainControlHelper
2019-07-30 09:10:46 +00:00
def call(domain_allow)
suspend_accounts!(domain_allow.domain) if limited_federation_mode?
2019-07-30 09:10:46 +00:00
domain_allow.destroy
end
private
def suspend_accounts!(domain)
2024-11-08 10:00:15 +00:00
Account.where(domain: domain).in_batches.touch_all(:suspended_at)
AfterUnallowDomainWorker.perform_async(domain)
end
2019-07-30 09:10:46 +00:00
end