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