Files
discourse/app/serializers/topic_view_posts_serializer.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
336 B
Ruby
Raw Normal View History

# 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