mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 20:43:19 +08:00
13 lines
143 B
Ruby
13 lines
143 B
Ruby
module Jobs
|
|
|
|
class CategoryStats < Jobs::Scheduled
|
|
every 24.hours
|
|
|
|
def execute(args)
|
|
Category.update_stats
|
|
end
|
|
|
|
end
|
|
|
|
end
|