This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2017-01-23 12:29:34 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class BlockWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
|
|
|
def perform(account_id, target_account_id)
|
2017-01-24 12:40:41 -08:00
|
|
|
AfterBlockService.new.call(Account.find(account_id), Account.find(target_account_id))
|
2017-01-23 12:29:34 -08:00
|
|
|
end
|
|
|
|
end
|