2017-01-23 15:29:34 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class BlockWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(account_id, target_account_id)
|
2018-10-07 17:44:58 -04:00
|
|
|
AfterBlockService.new.call(
|
|
|
|
Account.find(account_id),
|
|
|
|
Account.find(target_account_id)
|
|
|
|
)
|
2017-01-23 15:29:34 -05:00
|
|
|
end
|
|
|
|
end
|