about summary refs log tree commit diff
path: root/app/workers/revoke_status_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/revoke_status_worker.rb')
-rw-r--r--app/workers/revoke_status_worker.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/workers/revoke_status_worker.rb b/app/workers/revoke_status_worker.rb
new file mode 100644
index 000000000..8cc2b1623
--- /dev/null
+++ b/app/workers/revoke_status_worker.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+class RevokeStatusWorker
+  include Sidekiq::Worker
+
+  def perform(status_id, account_ids)
+    RevokeStatusService.new.call(Status.find(status_id), account_ids)
+  rescue ActiveRecord::RecordNotFound
+    true
+  end
+end