This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-01-23 21:29:34 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class BlockWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(account_id, target_account_id)
|
2018-10-07 23:44:58 +02:00
|
|
|
AfterBlockService.new.call(
|
|
|
|
Account.find(account_id),
|
|
|
|
Account.find(target_account_id)
|
|
|
|
)
|
2017-01-23 21:29:34 +01:00
|
|
|
end
|
|
|
|
end
|