1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-07 19:59:33 +00:00

13 lines
143 B
Ruby

module Jobs
class CategoryStats < Jobs::Scheduled
every 24.hours
def execute(args)
Category.update_stats
end
end
end