1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-18 16:43:51 -05:00
tootlab-mastodon/app/services/after_unallow_domain_service.rb

10 lines
241 B
Ruby

# frozen_string_literal: true
class AfterUnallowDomainService < BaseService
def call(domain)
Account.where(domain: domain).find_each do |account|
DeleteAccountService.new.call(account, reserve_username: false)
end
end
end