mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:37:55 +08:00
10 lines
137 B
Ruby
10 lines
137 B
Ruby
module Jobs
|
|
class AboutStats < Jobs::Scheduled
|
|
every 30.minutes
|
|
|
|
def execute(args)
|
|
About.refresh_stats
|
|
end
|
|
end
|
|
end
|