1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-02 00:38:27 +09:00
whippy-edition/app/services/block_domain_service.rb

14 lines
331 B
Ruby
Raw Normal View History

2016-10-09 21:48:43 +09:00
class BlockDomainService < BaseService
def call(domain)
block = 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
2016-10-09 21:48:43 +09:00
end
account.destroy!
end
end
end