REFACTOR: Fixes poor class hierarchy for listing topics

- Upgrades Ember to latest
- Fixes a bunch of bugs with page titles and missing "active" states
This commit is contained in:
Robin Ward
2014-01-14 12:48:57 -05:00
committed by Régis Hanol
parent 86214989f5
commit 4981525047
178 changed files with 8441 additions and 4573 deletions

View File

@ -4,9 +4,12 @@ class SiteSerializer < ApplicationSerializer
:notification_types,
:post_types,
:group_names,
:filters,
:periods,
:top_menu_items,
:anonymous_top_menu_items,
:uncategorized_category_id # this is hidden so putting it here
has_many :categories, serializer: BasicCategorySerializer, embed: :objects
has_many :post_action_types, embed: :objects
has_many :trust_levels, embed: :objects
@ -21,6 +24,22 @@ class SiteSerializer < ApplicationSerializer
Post.types
end
def filters
Discourse.filters.map(&:to_s)
end
def periods
TopTopic.periods.map(&:to_s)
end
def top_menu_items
Discourse.top_menu_items.map(&:to_s)
end
def anonymous_top_menu_items
Discourse.anonymous_top_menu_items.map(&:to_s)
end
def uncategorized_category_id
SiteSetting.uncategorized_category_id
end