mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 03:07:17 -05:00
11 lines
150 B
Ruby
11 lines
150 B
Ruby
class TopicViewPostsSerializer < ApplicationSerializer
|
|
include PostStreamSerializerMixin
|
|
|
|
attributes :id
|
|
|
|
def id
|
|
object.topic.id
|
|
end
|
|
|
|
end
|