mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-29 10:36:52 -05:00
f661fa609e
http://meta.discourse.org/t/is-it-better-for-discourse-to-use-javascript-or-coffeescript/3153
21 lines
498 B
Ruby
21 lines
498 B
Ruby
class SiteSerializer < ApplicationSerializer
|
|
|
|
attributes :default_archetype,
|
|
:notification_types,
|
|
:post_types
|
|
|
|
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
|
|
|
|
|
|
def default_archetype
|
|
Archetype.default
|
|
end
|
|
|
|
def post_types
|
|
{regular: Post::REGULAR, moderator_action: Post::MODERATOR_ACTION}
|
|
end
|
|
|
|
end
|