Add filters for suspended accounts
This commit is contained in:
parent
2488162733
commit
f406e01fcf
8 changed files with 35 additions and 12 deletions
9
app/workers/admin/suspension_worker.rb
Normal file
9
app/workers/admin/suspension_worker.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class Admin::SuspensionWorker
|
||||
include Sidekiq::Worker
|
||||
|
||||
def perform(account_id)
|
||||
SuspendAccountService.new.call(Account.find(account_id))
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue