mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:15:46 +08:00
ff49f72ad9
Revamped system for managing authentication tokens. - Every user has 1 token per client (web browser) - Tokens are rotated every 10 minutes New system migrates the old tokens to "legacy" tokens, so users still remain logged on. Also introduces weekly job to expire old auth tokens.
20 lines
466 B
Ruby
20 lines
466 B
Ruby
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
|
|
SchedulerStat.purge_old
|
|
Draft.cleanup!
|
|
UserAuthToken.cleanup!
|
|
end
|
|
end
|
|
end
|