mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 12:03:35 +08:00
239cbd2d58
replaced every `and` by `&&` and every `or` by `||`
16 lines
421 B
Ruby
16 lines
421 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
|