about summary refs log tree commit diff
path: root/app/workers/admin/suspension_worker.rb
blob: 7ef2b35ecda45cbcd3adb5acf9746aea7f2a51fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

class Admin::SuspensionWorker
  include Sidekiq::Worker

  sidekiq_options queue: 'pull'

  def perform(account_id)
    SuspendAccountService.new.call(Account.find(account_id))
  end
end