block_worker.rb 239 B

123456789101112
  1. # frozen_string_literal: true
  2. class BlockWorker
  3. include Sidekiq::Worker
  4. def perform(account_id, target_account_id)
  5. AfterBlockService.new.call(
  6. Account.find(account_id),
  7. Account.find(target_account_id)
  8. )
  9. end
  10. end