2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-12 21:10:47 +08:00
discourse/app/jobs/scheduled/clean_up_email_logs.rb

18 lines
365 B
Ruby

module Jobs
class CleanUpEmailLogs < Jobs::Scheduled
every 1.day
def execute(args)
return if SiteSetting.suppress_email_logs_after_days <= 0
threshold = SiteSetting.suppress_email_logs_after_days.days.ago
EmailLog.where(reply_key: nil)
.where("created_at < ?", threshold)
.destroy_all
end
end
end