mirror of
https://github.com/discourse/discourse.git
synced 2024-11-26 10:50:26 -06: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
|