about summary refs log tree commit diff
path: root/app/services/after_unallow_domain_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/after_unallow_domain_service.rb')
-rw-r--r--app/services/after_unallow_domain_service.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/services/after_unallow_domain_service.rb b/app/services/after_unallow_domain_service.rb
new file mode 100644
index 000000000..ccd0b8ae9
--- /dev/null
+++ b/app/services/after_unallow_domain_service.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class AfterUnallowDomainService < BaseService
+  def call(domain)
+    Account.where(domain: domain).find_each do |account|
+      SuspendAccountService.new.call(account, reserve_username: false)
+    end
+  end
+end