mirror of
https://github.com/discourse/discourse.git
synced 2025-06-03 02:48:28 +08:00
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:
@ -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
|
||||
|
Reference in New Issue
Block a user