This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/app/serializers/topic_view_posts_serializer.rb

20 lines
268 B
Ruby

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