about summary refs log tree commit diff
path: root/app/workers/merge_worker.rb
blob: 0f288f43fe976a44a26b398297b3dc360dd1f83c (plain) (blame)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class MergeWorker
  include Sidekiq::Worker

  def perform(from_account_id, into_account_id)
    FeedManager.instance.merge_into_timeline(Account.find(from_account_id), Account.find(into_account_id))
  end
end