mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
65 lines
1.3 KiB
Ruby
65 lines
1.3 KiB
Ruby
class CategoryDetailedSerializer < BasicCategorySerializer
|
|
|
|
attributes :topic_count,
|
|
:post_count,
|
|
:topics_day,
|
|
:topics_week,
|
|
:topics_month,
|
|
:topics_year,
|
|
:posts_day,
|
|
:posts_week,
|
|
:posts_month,
|
|
:posts_year,
|
|
:description_excerpt,
|
|
:is_uncategorized,
|
|
:subcategory_ids
|
|
|
|
has_many :featured_users, serializer: BasicUserSerializer
|
|
has_many :displayable_topics, serializer: ListableTopicSerializer, 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
|
|
|
|
def posts_week
|
|
object.posts_week || 0
|
|
end
|
|
|
|
def posts_month
|
|
object.posts_month || 0
|
|
end
|
|
|
|
def posts_year
|
|
object.posts_year || 0
|
|
end
|
|
|
|
def is_uncategorized
|
|
object.id == SiteSetting.uncategorized_category_id
|
|
end
|
|
|
|
def include_is_uncategorized?
|
|
is_uncategorized
|
|
end
|
|
|
|
def include_displayable_topics?
|
|
return displayable_topics.present?
|
|
end
|
|
|
|
def description_excerpt
|
|
PrettyText.excerpt(description,300) if description
|
|
end
|
|
|
|
def include_subcategory_ids?
|
|
subcategory_ids.present?
|
|
end
|
|
|
|
end
|