about summary refs log tree commit diff
path: root/app/workers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-12-19 09:12:00 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-12-19 09:12:29 +0100
commit0542773bca804868c8e4b45fe08f6041cb1b5851 (patch)
treefaced5b2e24aa89c8ab773bf9caabc0394454a95 /app/workers
parent6b67b55cee5d3adda87b3990e54bdd7fefee1ef6 (diff)
Make unfavouriting async to prevent timeout errors from leaving orphaned records behind
Diffstat (limited to 'app/workers')
-rw-r--r--app/workers/unfavourite_worker.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/workers/unfavourite_worker.rb b/app/workers/unfavourite_worker.rb
new file mode 100644
index 000000000..a14c82d6f
--- /dev/null
+++ b/app/workers/unfavourite_worker.rb
@@ -0,0 +1,9 @@
+# frozen_string_literal: true
+
+class UnfavouriteWorker
+  include Sidekiq::Worker
+
+  def perform(account_id, status_id)
+    UnfavouriteService.new.call(Account.find(account_id), Status.find(status_id))
+  end
+end