This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-07-15 12:08:19 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class AfterUnallowDomainService < BaseService
|
|
|
|
def call(domain)
|
|
|
|
Account.where(domain: domain).find_each do |account|
|
2020-09-15 05:37:58 -07:00
|
|
|
DeleteAccountService.new.call(account, reserve_username: false)
|
2020-07-15 12:08:19 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|