2016-12-07 04:03:30 +11:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::SuspensionWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-04-06 05:41:50 +10:00
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
|
2017-06-15 02:01:27 +10:00
|
|
|
def perform(account_id, remove_user = false)
|
2018-12-03 11:32:08 +11:00
|
|
|
SuspendAccountService.new.call(Account.find(account_id), including_user: remove_user)
|
2016-12-07 04:03:30 +11:00
|
|
|
end
|
|
|
|
end
|