mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 06:15:28 +08:00
29 lines
615 B
Ruby
29 lines
615 B
Ruby
class SiteSerializer < ApplicationSerializer
|
|
|
|
attributes :default_archetype,
|
|
:notification_types,
|
|
:post_types,
|
|
:uncategorized_slug,
|
|
:group_names
|
|
|
|
|
|
has_many :categories, serializer: BasicCategorySerializer, embed: :objects
|
|
has_many :post_action_types, 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 uncategorized_slug
|
|
Slug.for(SiteSetting.uncategorized_name)
|
|
end
|
|
|
|
end
|