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.
|
class BlockDomainService < BaseService
|
|
def call(domain)
|
|
DomainBlock.find_or_create_by!(domain: domain)
|
|
|
|
Account.where(domain: domain).find_each do |account|
|
|
if account.subscribed?
|
|
account.subscription(api_subscription_url(account.id)).unsubscribe
|
|
end
|
|
|
|
account.destroy!
|
|
end
|
|
end
|
|
end
|