mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
13 lines
359 B
Ruby
13 lines
359 B
Ruby
class SiteSerializer < ApplicationSerializer
|
|
|
|
attributes :default_archetype, :notification_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
|
|
|
|
end
|