1
0
mirror of https://github.com/discourse/discourse.git synced 2025-03-08 12:35:04 +00:00
discourse/app/serializers/topic_view_posts_serializer.rb
2023-01-09 14:14:59 +00:00

25 lines
335 B
Ruby

# frozen_string_literal: true
class TopicViewPostsSerializer < ApplicationSerializer
include PostStreamSerializerMixin
include SuggestedTopicsMixin
attributes :id
def id
object.topic.id
end
def include_stream?
false
end
def include_gaps?
false
end
def include_timeline_lookup?
false
end
end