2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00
discourse/app/jobs/scheduled/about_stats.rb
2016-04-21 14:50:25 +08:00

9 lines
137 B
Ruby

module Jobs
class AboutStats < Jobs::Scheduled
every 30.minutes
def execute(args)
About.refresh_stats
end
end
end