2017-01-24 07:29:34 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class MergeWorker
|
|
|
|
include Sidekiq::Worker
|
2022-04-29 01:47:34 +10:00
|
|
|
include Redisable
|
2017-01-24 07:29:34 +11:00
|
|
|
|
|
|
|
def perform(from_account_id, into_account_id)
|
2020-09-08 11:41:16 +10:00
|
|
|
FeedManager.instance.merge_into_home(Account.find(from_account_id), Account.find(into_account_id))
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2021-05-04 12:45:08 +10:00
|
|
|
ensure
|
2022-04-29 01:47:34 +10:00
|
|
|
redis.del("account:#{into_account_id}:regeneration")
|
2017-01-24 07:29:34 +11:00
|
|
|
end
|
|
|
|
end
|