mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-04 14:04:39 +00:00
14 lines
301 B
Ruby
14 lines
301 B
Ruby
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('').unsubscribe
|
|
end
|
|
|
|
account.destroy!
|
|
end
|
|
end
|
|
end
|