0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-08 17:53:55 +08:00
discourse/app/jobs/scheduled/weekly.rb
2023-01-09 14:14:59 +00:00

19 lines
496 B
Ruby
Vendored

# frozen_string_literal: true
module Jobs
# This job will run on a regular basis to update statistics and denormalized data.
# If it does not run, the site will not function properly.
class Weekly < ::Jobs::Scheduled
every 1.week
def execute(args)
ScoreCalculator.new.calculate
MiniScheduler::Stat.purge_old
Draft.cleanup!
UserAuthToken.cleanup!
Email::Cleaner.delete_rejected!
Notification.purge_old!
Bookmark.cleanup!
end
end
end