Skip to content
Snippets Groups Projects
Unverified Commit ee5a4030 authored by ThibG's avatar ThibG Committed by GitHub
Browse files

Fix removing a DomainAllow rule wiping known accounts in open federation mode (#14298)

Fixes #14296
parent 58204175
No related branches found
No related tags found
No related merge requests found
# frozen_string_literal: true
class UnallowDomainService < BaseService
include DomainControlHelper
def call(domain_allow)
Account.where(domain: domain_allow.domain).find_each do |account|
SuspendAccountService.new.call(account, reserve_username: false)
end
suspend_accounts!(domain_allow.domain) if whitelist_mode?
domain_allow.destroy
end
private
def suspend_accounts!(domain)
Account.where(domain: domain).find_each do |account|
SuspendAccountService.new.call(account, reserve_username: false)
end
end
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment