2016-12-06 12:03:30 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::SuspensionWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2017-04-05 15:41:50 -04:00
|
|
|
sidekiq_options queue: 'pull'
|
|
|
|
|
2020-09-15 08:37:58 -04:00
|
|
|
def perform(account_id)
|
|
|
|
SuspendAccountService.new.call(Account.find(account_id))
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
2016-12-06 12:03:30 -05:00
|
|
|
end
|
|
|
|
end
|