mirror of
https://github.com/discourse/discourse.git
synced 2025-01-24 07:36:31 +08:00
21 lines
486 B
Ruby
21 lines
486 B
Ruby
class TopicListSerializer < ApplicationSerializer
|
|
|
|
attributes :can_create_topic,
|
|
:more_topics_url,
|
|
:filter_summary,
|
|
:draft,
|
|
:draft_key,
|
|
:draft_sequence
|
|
|
|
has_many :topics, serializer: TopicListItemSerializer, embed: :objects
|
|
|
|
def can_create_topic
|
|
scope.can_create?(Topic)
|
|
end
|
|
|
|
def include_more_topics_url?
|
|
object.more_topics_url.present? && (object.topics.size == SiteSetting.topics_per_page)
|
|
end
|
|
|
|
end
|