1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 12:35:04 +00:00
discourse/app/jobs/scheduled/cleanup_imap_sync_log.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
240 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module Jobs
class CleanupImapSyncLog < ::Jobs::Scheduled
every 1.day
def execute(args)
ImapSyncLog.where("created_at < ?", ImapSyncLog::RETAIN_LOGS_DAYS.days.ago).delete_all
end
end
end