mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 16:18:42 -05:00
666264879c
this cleans up a bunch of internals and removes some settings
28 lines
662 B
Ruby
28 lines
662 B
Ruby
class SiteSerializer < ApplicationSerializer
|
|
|
|
attributes :default_archetype,
|
|
:notification_types,
|
|
:post_types,
|
|
:group_names,
|
|
: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
|
|
has_many :archetypes, embed: :objects, serializer: ArchetypeSerializer
|
|
|
|
|
|
def default_archetype
|
|
Archetype.default
|
|
end
|
|
|
|
def post_types
|
|
Post.types
|
|
end
|
|
|
|
def uncategorized_category_id
|
|
SiteSetting.uncategorized_category_id
|
|
end
|
|
|
|
end
|