2013-04-06 04:09:27 +08:00
|
|
|
class CategoryDetailedSerializer < ApplicationSerializer
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2013-04-06 04:09:27 +08:00
|
|
|
attributes :id,
|
|
|
|
:name,
|
|
|
|
:color,
|
|
|
|
:text_color,
|
|
|
|
:slug,
|
|
|
|
:topic_count,
|
|
|
|
:topics_week,
|
|
|
|
:topics_month,
|
|
|
|
:topics_year,
|
2013-05-28 02:15:20 +08:00
|
|
|
:description,
|
|
|
|
:is_uncategorized
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
has_many :featured_users, serializer: BasicUserSerializer
|
2013-02-07 23:45:24 +08:00
|
|
|
has_many :featured_topics, serializer: CategoryTopicSerializer, embed: :objects, key: :topics
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
def topics_week
|
|
|
|
object.topics_week || 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def topics_month
|
|
|
|
object.topics_month || 0
|
|
|
|
end
|
|
|
|
|
|
|
|
def topics_year
|
|
|
|
object.topics_year || 0
|
|
|
|
end
|
|
|
|
|
2013-05-28 02:15:20 +08:00
|
|
|
def is_uncategorized
|
|
|
|
name == SiteSetting.uncategorized_name
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_is_uncategorized?
|
|
|
|
is_uncategorized
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|