2014-02-26 19:45:20 -05:00
|
|
|
require_dependency 'score_calculator'
|
|
|
|
|
|
|
|
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)
|
|
|
|
Post.calculate_avg_time
|
|
|
|
Topic.calculate_avg_time
|
|
|
|
ScoreCalculator.new.calculate
|
2016-05-29 21:38:08 -04:00
|
|
|
SchedulerStat.purge_old
|
2015-06-01 23:45:47 -04:00
|
|
|
Draft.cleanup!
|
2017-01-31 17:21:37 -05:00
|
|
|
UserAuthToken.cleanup!
|
2014-02-26 19:45:20 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|