about summary refs log tree commit diff
path: root/app/workers/mute_conversation_worker.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/workers/mute_conversation_worker.rb')
-rw-r--r--app/workers/mute_conversation_worker.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/app/workers/mute_conversation_worker.rb b/app/workers/mute_conversation_worker.rb
new file mode 100644
index 000000000..efe6dd539
--- /dev/null
+++ b/app/workers/mute_conversation_worker.rb
@@ -0,0 +1,11 @@
+# frozen_string_literal: true
+
+class MuteConversationWorker
+  include Sidekiq::Worker
+
+  def perform(account_id, conversation_id)
+    FeedManager.instance.unpush_conversation(Account.find(account_id), Conversation.find(conversation_id))
+  rescue ActiveRecord::RecordNotFound
+    true
+  end
+end