mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 18:48:06 +01:00
9 lines
241 B
Ruby
9 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
|