discourse/app/serializers/basic_category_serializer.rb

20 lines
398 B
Ruby
Raw Normal View History

class BasicCategorySerializer < ApplicationSerializer
attributes :id,
:name,
:color,
:text_color,
:slug,
:topic_count,
:description,
:topic_url,
:read_restricted,
2013-10-23 13:29:20 -04:00
:permission,
:parent_category_id
2013-10-23 14:40:39 -04:00
def include_parent_category_id?
parent_category_id
end
end