1
0
mirror of https://github.com/funamitech/mastodon synced 2024-11-27 14:29:03 +09:00
YuruToot/app/services/unallow_domain_service.rb

19 lines
406 B
Ruby
Raw Permalink Normal View History

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