mirror of
https://github.com/discourse/discourse.git
synced 2025-01-06 11:33:52 +08:00
12 lines
173 B
Ruby
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
|