discourse/app/jobs/scheduled/about_stats.rb

10 lines
137 B
Ruby
Raw Normal View History

2015-07-07 00:52:19 -04:00
module Jobs
class AboutStats < Jobs::Scheduled
every 30.minutes
def execute(args)
About.refresh_stats
2015-07-07 00:52:19 -04:00
end
end
end