discourse/app/jobs/scheduled/about_stats.rb

14 lines
208 B
Ruby
Raw Normal View History

2015-07-07 00:52:19 -04:00
module Jobs
class AboutStats < Jobs::Scheduled
include Jobs::Stats
every 30.minutes
def execute(args)
stats = About.new.stats
set_cache(About, stats)
stats
end
end
end