mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-03-19 19:41:00 -04:00
12 lines
143 B
Ruby
12 lines
143 B
Ruby
module Jobs
|
|
|
|
class CategoryStats < Jobs::Scheduled
|
|
every 24.hours
|
|
|
|
def execute(args)
|
|
Category.update_stats
|
|
end
|
|
|
|
end
|
|
|
|
end
|