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

class UnmergeWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'pull'

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