mirror of
https://github.com/mastodon/mastodon.git
synced 2026-04-23 16:47:55 -05:00
12 lines
277 B
Ruby
12 lines
277 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AfterUnallowDomainService < BaseService
|
|
def call(domain)
|
|
return if domain.blank?
|
|
|
|
Account.remote.where(domain: domain).find_each do |account|
|
|
DeleteAccountService.new.call(account, reserve_username: false)
|
|
end
|
|
end
|
|
end
|