discourse/app/serializers/site_serializer.rb
Sam b6bf95e741 speed up startup (avoid loading some gems on startup)
correct group permission leaks
add Discourse.cache for richer caching support
2013-05-13 18:04:03 +10:00

21 lines
476 B
Ruby

class SiteSerializer < ApplicationSerializer
attributes :default_archetype,
:notification_types,
:post_types
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
end