discourse/app/serializers/basic_category_serializer.rb

48 lines
1.1 KiB
Ruby
Raw Normal View History

class BasicCategorySerializer < ApplicationSerializer
attributes :id,
:name,
:color,
:text_color,
:slug,
:topic_count,
:post_count,
2015-08-27 13:14:59 -04:00
:position,
:description,
:description_text,
:topic_url,
:read_restricted,
2013-10-23 13:29:20 -04:00
:permission,
2014-04-17 05:17:39 -04:00
:parent_category_id,
:notification_level,
:can_edit,
:topic_template,
:has_children,
:sort_order,
:sort_ascending,
:show_subcategory_list
has_one :uploaded_logo, embed: :object, serializer: CategoryUploadSerializer
has_one :uploaded_background, embed: :object, serializer: CategoryUploadSerializer
2013-10-23 14:40:39 -04:00
def include_parent_category_id?
parent_category_id
end
def description
object.uncategorized? ? I18n.t('category.uncategorized_description') : object.description
end
def can_edit
true
end
2014-09-09 09:32:58 -04:00
def include_can_edit?
scope && scope.can_edit?(object)
end
def notification_level
2016-02-03 07:58:59 -05:00
object.notification_level
end
end