2020-09-15 22:37:58 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::AccountDeletionWorker
|
|
|
|
include Sidekiq::Worker
|
|
|
|
|
2022-11-10 00:08:19 +11:00
|
|
|
sidekiq_options queue: 'pull', lock: :until_executed
|
2020-09-15 22:37:58 +10:00
|
|
|
|
|
|
|
def perform(account_id)
|
|
|
|
DeleteAccountService.new.call(Account.find(account_id), reserve_username: true, reserve_email: true)
|
|
|
|
rescue ActiveRecord::RecordNotFound
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|