logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe git clone https://hacktivis.me/git/mastofe.git

ip_cleanup_scheduler.rb (360B)


  1. # frozen_string_literal: true
  2. require 'sidekiq-scheduler'
  3. class Scheduler::IpCleanupScheduler
  4. include Sidekiq::Worker
  5. RETENTION_PERIOD = 1.year
  6. def perform
  7. time_ago = RETENTION_PERIOD.ago
  8. SessionActivation.where('updated_at < ?', time_ago).destroy_all
  9. User.where('last_sign_in_at < ?', time_ago).update_all(last_sign_in_ip: nil)
  10. end
  11. end