The code powering m.abunchtell.com https://m.abunchtell.com
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

18 řádky
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