discourse/lib/jobs/category_stats.rb

11 lines
118 B
Ruby
Raw Normal View History

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