2013-02-06 03:16:51 +08:00
|
|
|
class SiteSerializer < ApplicationSerializer
|
|
|
|
|
2013-02-26 00:42:20 +08:00
|
|
|
attributes :default_archetype,
|
2013-02-21 02:15:50 +08:00
|
|
|
:notification_types,
|
2013-05-28 02:15:20 +08:00
|
|
|
:post_types,
|
2013-10-24 07:05:51 +08:00
|
|
|
:group_names,
|
|
|
|
:uncategorized_category_id # this is hidden so putting it here
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-06-26 22:57:35 +08:00
|
|
|
|
2013-05-13 16:04:03 +08:00
|
|
|
has_many :categories, serializer: BasicCategorySerializer, embed: :objects
|
2013-02-06 03:16:51 +08:00
|
|
|
has_many :post_action_types, embed: :objects
|
|
|
|
has_many :trust_levels, embed: :objects
|
|
|
|
has_many :archetypes, embed: :objects, serializer: ArchetypeSerializer
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def default_archetype
|
|
|
|
Archetype.default
|
|
|
|
end
|
|
|
|
|
2013-02-21 02:15:50 +08:00
|
|
|
def post_types
|
2013-03-19 04:03:46 +08:00
|
|
|
Post.types
|
2013-02-21 02:15:50 +08:00
|
|
|
end
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2013-10-24 07:05:51 +08:00
|
|
|
def uncategorized_category_id
|
|
|
|
SiteSetting.uncategorized_category_id
|
2013-05-28 02:15:20 +08:00
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|