The code powering m.abunchtell.com https://m.abunchtell.com
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.
 
 
 
 

18 rader
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