1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/app/services/block_domain_service.rb

14 lines
331 B
Ruby
Raw Normal View History

2016-10-09 05:48:43 -07: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 05:48:43 -07:00
end
account.destroy!
end
end
end