1
0
mirror of https://github.com/whippyshou/mastodon synced 2024-12-02 16:58:45 +09:00
whippy-edition/app/services/unallow_domain_service.rb

12 lines
272 B
Ruby
Raw Normal View History

2019-07-30 18:10:46 +09:00
# frozen_string_literal: true
class UnallowDomainService < BaseService
def call(domain_allow)
Account.where(domain: domain_allow.domain).find_each do |account|
SuspendAccountService.new.call(account, destroy: true)
end
domain_allow.destroy
end
end