taskbar_cleanup_job.rb 279 B

1234567891011
  1. # Copyright (C) 2012-2024 Zammad Foundation, https://zammad-foundation.org/
  2. class TaskbarCleanupJob < ApplicationJob
  3. LAST_CONTACT_THRESHOLD = 1.day
  4. def perform
  5. Taskbar
  6. .where(app: :mobile, last_contact: ...LAST_CONTACT_THRESHOLD.ago)
  7. .destroy_all
  8. end
  9. end