2013-02-05 13:16:51 -06:00
|
|
|
class SiteSerializer < ApplicationSerializer
|
|
|
|
|
2013-02-25 10:42:20 -06:00
|
|
|
attributes :default_archetype,
|
2013-02-20 12:15:50 -06:00
|
|
|
:notification_types,
|
2013-05-27 13:15:20 -05:00
|
|
|
:post_types,
|
|
|
|
:uncategorized_slug
|
2013-02-20 12:15:50 -06:00
|
|
|
|
2013-05-13 03:04:03 -05:00
|
|
|
has_many :categories, serializer: BasicCategorySerializer, embed: :objects
|
2013-02-05 13:16:51 -06:00
|
|
|
has_many :post_action_types, embed: :objects
|
|
|
|
has_many :trust_levels, embed: :objects
|
|
|
|
has_many :archetypes, embed: :objects, serializer: ArchetypeSerializer
|
|
|
|
|
2013-02-20 12:15:50 -06:00
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
def default_archetype
|
|
|
|
Archetype.default
|
|
|
|
end
|
|
|
|
|
2013-02-20 12:15:50 -06:00
|
|
|
def post_types
|
2013-03-18 15:03:46 -05:00
|
|
|
Post.types
|
2013-02-20 12:15:50 -06:00
|
|
|
end
|
2013-02-25 10:42:20 -06:00
|
|
|
|
2013-05-27 13:15:20 -05:00
|
|
|
def uncategorized_slug
|
|
|
|
Slug.for(SiteSetting.uncategorized_name)
|
|
|
|
end
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|