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