discourse/lib/jobs/category_stats.rb

11 lines
118 B
Ruby
Raw Normal View History

2013-02-05 13:16:51 -06:00
module Jobs
class CategoryStats < Jobs::Base
def execute(args)
Category.update_stats
end
end
end