FIX: topic and post counts on /categories page should include sub-categories

This commit is contained in:
Neil Lalonde
2014-02-05 18:39:26 -05:00
parent 7d79d5a738
commit 14018ec07c
2 changed files with 39 additions and 25 deletions

View File

@ -44,6 +44,7 @@ class Category < ActiveRecord::Base
has_one :category_search_data
belongs_to :parent_category, class_name: 'Category'
has_many :subcategories, class_name: 'Category', foreign_key: 'parent_category_id'
scope :latest, ->{ order('topic_count desc') }