11 lines
150 B
Ruby
11 lines
150 B
Ruby
|
class TopicViewPostsSerializer < ApplicationSerializer
|
||
|
include PostStreamSerializerMixin
|
||
|
|
||
|
attributes :id
|
||
|
|
||
|
def id
|
||
|
object.topic.id
|
||
|
end
|
||
|
|
||
|
end
|