1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-09 14:34:35 +00:00
2023-01-09 14:14:59 +00:00

12 lines
173 B
Ruby

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