The code powering m.abunchtell.com https://m.abunchtell.com
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 
 
 

15 rindas
388 B

  1. # frozen_string_literal: true
  2. class Scheduler::UserCleanupScheduler
  3. include Sidekiq::Worker
  4. sidekiq_options unique: :until_executed
  5. def perform
  6. User.where('confirmed_at is NULL AND confirmation_sent_at <= ?', 2.days.ago).find_in_batches do |batch|
  7. Account.where(id: batch.map(&:account_id)).delete_all
  8. User.where(id: batch.map(&:id)).delete_all
  9. end
  10. end
  11. end