discourse/app/serializers/basic_category_serializer.rb

40 lines
837 B
Ruby
Raw Normal View History

class BasicCategorySerializer < ApplicationSerializer
attributes :id,
:name,
:color,
:text_color,
:slug,
:topic_count,
:post_count,
:description,
:description_text,
:topic_url,
:read_restricted,
2013-10-24 01:29:20 +08:00
:permission,
2014-04-17 17:17:39 +08:00
:parent_category_id,
:notification_level,
:logo_url,
:background_url,
:can_edit,
:topic_template,
:has_children
2013-10-24 02:40:39 +08:00
def include_parent_category_id?
parent_category_id
end
def description
object.uncategorized? ? SiteSetting.uncategorized_description : object.description
end
def can_edit
true
end
2014-09-09 21:32:58 +08:00
def include_can_edit?
scope && scope.can_edit?(object)
end
end