The code powering m.abunchtell.com https://m.abunchtell.com
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

18 行
504 B

  1. # frozen_string_literal: true
  2. class AfterRemoteFollowRequestWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull', retry: 5
  5. def perform(follow_request_id)
  6. follow_request = FollowRequest.find(follow_request_id)
  7. updated_account = FetchRemoteAccountService.new.call(follow_request.target_account.remote_url)
  8. return if updated_account.nil? || updated_account.locked?
  9. follow_request.destroy
  10. FollowService.new.call(follow_request.account, updated_account.acct)
  11. end
  12. end