20 lines
456 B
Ruby
20 lines
456 B
Ruby
class TopicListSerializer < ApplicationSerializer
|
|
|
|
attributes :can_create_topic,
|
|
:more_topics_url,
|
|
: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
|