2013-02-06 03:16:51 +08:00
|
|
|
class TopicListSerializer < ApplicationSerializer
|
2013-02-07 23:45:24 +08:00
|
|
|
|
2013-04-03 04:52:51 +08:00
|
|
|
attributes :can_create_topic,
|
|
|
|
:more_topics_url,
|
|
|
|
:draft,
|
|
|
|
:draft_key,
|
2013-04-04 03:24:26 +08:00
|
|
|
:draft_sequence,
|
|
|
|
:can_view_rank_details
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
has_many :topics, serializer: TopicListItemSerializer, embed: :objects
|
|
|
|
|
2013-04-04 03:24:26 +08:00
|
|
|
def can_view_rank_details
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_can_view_rank_details?
|
|
|
|
object.has_rank_details?
|
|
|
|
end
|
|
|
|
|
2013-02-06 03:16:51 +08:00
|
|
|
def can_create_topic
|
|
|
|
scope.can_create?(Topic)
|
|
|
|
end
|
|
|
|
|
|
|
|
def include_more_topics_url?
|
2013-03-05 08:42:44 +08:00
|
|
|
object.more_topics_url.present? && (object.topics.size == SiteSetting.topics_per_page)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|