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

12 lines
181 B
Ruby

class TopicViewPostsSerializer < ApplicationSerializer
include PostStreamSerializerMixin
include SuggestedTopicsMixin
attributes :id
def id
object.topic.id
end
end