account_deletion_worker.rb 360 B

12345678910111213
  1. # frozen_string_literal: true
  2. class Admin::AccountDeletionWorker
  3. include Sidekiq::Worker
  4. sidekiq_options queue: 'pull', lock: :until_executed, lock_ttl: 1.week.to_i
  5. def perform(account_id)
  6. DeleteAccountService.new.call(Account.find(account_id), reserve_username: true, reserve_email: true)
  7. rescue ActiveRecord::RecordNotFound
  8. true
  9. end
  10. end