mirror of
https://github.com/discourse/discourse.git
synced 2025-09-04 08:47:37 +08:00
11 lines
181 B
Ruby
11 lines
181 B
Ruby
class TopicViewPostsSerializer < ApplicationSerializer
|
|
include PostStreamSerializerMixin
|
|
include SuggestedTopicsMixin
|
|
|
|
attributes :id
|
|
|
|
def id
|
|
object.topic.id
|
|
end
|
|
|
|
end
|