mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 11:13:22 +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
|