Move merging/unmerging of timelines into background. Move blocking into
background as well since it's a computationally expensive
This commit is contained in:
9
app/workers/block_worker.rb
Normal file
9
app/workers/block_worker.rb
Normal file
@ -0,0 +1,9 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class BlockWorker
|
||||
include Sidekiq::Worker
|
||||
|
||||
def perform(account_id, target_account_id)
|
||||
BlockService.new.call(Account.find(account_id), Account.find(target_account_id))
|
||||
end
|
||||
end
|
9
app/workers/merge_worker.rb
Normal file
9
app/workers/merge_worker.rb
Normal file
@ -0,0 +1,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
|
9
app/workers/unmerge_worker.rb
Normal file
9
app/workers/unmerge_worker.rb
Normal file
@ -0,0 +1,9 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class UnmergeWorker
|
||||
include Sidekiq::Worker
|
||||
|
||||
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
|
Reference in New Issue
Block a user