about summary refs log tree commit diff
path: root/app/workers/authorize_follow_worker.rb
diff options
context:
space:
mode:
authormasarakki <masaki182@gmail.com>2017-08-26 19:40:03 +0900
committerEugen Rochko <eugen@zeonfederated.com>2017-08-26 12:40:03 +0200
commit649a20ab46eadf9ae3bfc30782ae62379383bd72 (patch)
treef5a2f8633b8e611a55c146c92538f64c45b6618d /app/workers/authorize_follow_worker.rb
parent3ac7b353f8ba74bce9e20974bcc1832930424ef2 (diff)
authorize-follow-requests-after-unlocking (#4658)
Diffstat (limited to 'app/workers/authorize_follow_worker.rb')
-rw-r--r--app/workers/authorize_follow_worker.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/app/workers/authorize_follow_worker.rb b/app/workers/authorize_follow_worker.rb
new file mode 100644
index 000000000..0d5014624
--- /dev/null
+++ b/app/workers/authorize_follow_worker.rb
@@ -0,0 +1,14 @@
+# frozen_string_literal: true
+
+class AuthorizeFollowWorker
+  include Sidekiq::Worker
+
+  def perform(source_account_id, target_account_id)
+    source_account = Account.find(source_account_id)
+    target_account = Account.find(target_account_id)
+
+    AuthorizeFollowService.new.call(source_account, target_account)
+  rescue ActiveRecord::RecordNotFound
+    true
+  end
+end