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.
2016-12-06 09:03:30 -08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::SuspensionWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-04-05 12:41:50 -07:00
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
|
2017-06-14 09:01:27 -07:00
|
|
|
def perform(account_id, remove_user = false)
|
2017-11-07 10:06:44 -08:00
|
|
|
SuspendAccountService.new.call(Account.find(account_id), remove_user: remove_user)
|
2016-12-06 09:03:30 -08:00
|
|
|
end
|
|
|
|
end
|