You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
301 B
14 lines
301 B
8 years ago
|
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
|