discourse/app/serializers/category_serializer.rb

13 lines
238 B
Ruby
Raw Normal View History

2013-02-06 03:16:51 +08:00
class CategorySerializer < ApplicationSerializer
2013-02-26 00:42:20 +08:00
attributes :id,
:name,
:color,
:text_color,
2013-02-26 00:42:20 +08:00
:slug,
:topic_count,
:description,
:topic_url
2013-02-06 03:16:51 +08:00
end