mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 03:42:16 +08:00
8214536614
Move the redirect to top page logic server-side and make sure the reason is not shown when top is not in the navigation menu (top_menu).
54 lines
1.2 KiB
Ruby
54 lines
1.2 KiB
Ruby
class SiteSerializer < ApplicationSerializer
|
|
|
|
attributes :default_archetype,
|
|
: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
|
|
:is_readonly
|
|
|
|
has_many :categories, serializer: BasicCategorySerializer, embed: :objects
|
|
has_many :post_action_types, embed: :objects
|
|
has_many :topic_flag_types, serializer: TopicFlagTypeSerializer, embed: :objects
|
|
has_many :trust_levels, embed: :objects
|
|
has_many :archetypes, embed: :objects, serializer: ArchetypeSerializer
|
|
|
|
|
|
def default_archetype
|
|
Archetype.default
|
|
end
|
|
|
|
def post_types
|
|
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
|
|
|
|
def is_readonly
|
|
Discourse.readonly_mode?
|
|
end
|
|
|
|
end
|