about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorThibG <thib@sitedethib.com>2020-07-15 21:08:19 +0200
committerGitHub <noreply@github.com>2020-07-15 21:08:19 +0200
commitd658af7ff8893d332f1509082a9d919f70af99af (patch)
tree71e93cbd0caee678c585c22bd89c6f5eee531f4e /app/workers
parentbfed7dd5f3127f08ece3070bd67f5737933bac1a (diff)
Fix removing allowed domains being done synchronously (#14302)
* Fix removing allowed domains being done synchronously

* Add tests
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/after_unallow_domain_worker.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/workers/after_unallow_domain_worker.rb b/app/workers/after_unallow_domain_worker.rb
new file mode 100644
index 000000000..46049cbb2
--- /dev/null
+++ b/app/workers/after_unallow_domain_worker.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class AfterUnallowDomainWorker
+  include Sidekiq::Worker
+
+  def perform(domain)
+    AfterUnallowDomainService.new.call(domain)
+  end
+end