mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
10 lines
241 B
Ruby
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
|