0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-07 13:19:19 +08:00
discourse/app/jobs/scheduled/clean_up_email_logs.rb
2023-01-09 14:14:59 +00:00

16 lines
406 B
Ruby
Vendored

# frozen_string_literal: true
module Jobs
class CleanUpEmailLogs < ::Jobs::Scheduled
every 1.day
def execute(args)
return if SiteSetting.delete_email_logs_after_days <= 0
threshold = SiteSetting.delete_email_logs_after_days.days.ago
EmailLog.where("created_at < ?", threshold).delete_all
SkippedEmailLog.where("created_at < ?", threshold).delete_all
end
end
end