2013-02-05 14:16:51 -05:00
|
|
|
class SiteSerializer < ApplicationSerializer
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
attributes :default_archetype,
|
2013-02-20 13:15:50 -05:00
|
|
|
:notification_types,
|
|
|
|
:post_types
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
has_many :categories, embed: :objects
|
|
|
|
has_many :post_action_types, embed: :objects
|
|
|
|
has_many :trust_levels, embed: :objects
|
|
|
|
has_many :archetypes, embed: :objects, serializer: ArchetypeSerializer
|
|
|
|
|
2013-02-20 13:15:50 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
def default_archetype
|
|
|
|
Archetype.default
|
|
|
|
end
|
|
|
|
|
2013-02-20 13:15:50 -05:00
|
|
|
def post_types
|
|
|
|
{regular: Post::REGULAR, moderator_action: Post::MODERATOR_ACTION}
|
|
|
|
end
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|