The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

19 lines
570 B

  1. # frozen_string_literal: true
  2. class UnfollowFollowWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull'
  5. def perform(follower_account_id, old_target_account_id, new_target_account_id)
  6. follower_account = Account.find(follower_account_id)
  7. old_target_account = Account.find(old_target_account_id)
  8. new_target_account = Account.find(new_target_account_id)
  9. UnfollowService.new.call(follower_account, old_target_account)
  10. FollowService.new.call(follower_account, new_target_account)
  11. rescue ActiveRecord::RecordNotFound
  12. true
  13. end
  14. end