mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
29 lines
621 B
Ruby
29 lines
621 B
Ruby
class CategoryDetailedSerializer < ApplicationSerializer
|
|
|
|
attributes :id,
|
|
:name,
|
|
:color,
|
|
:text_color,
|
|
:slug,
|
|
:topic_count,
|
|
:topics_week,
|
|
:topics_month,
|
|
:topics_year,
|
|
:description
|
|
|
|
has_many :featured_users, serializer: BasicUserSerializer
|
|
has_many :featured_topics, serializer: CategoryTopicSerializer, embed: :objects, key: :topics
|
|
|
|
def topics_week
|
|
object.topics_week || 0
|
|
end
|
|
|
|
def topics_month
|
|
object.topics_month || 0
|
|
end
|
|
|
|
def topics_year
|
|
object.topics_year || 0
|
|
end
|
|
|
|
end
|