mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 06:04:11 +08:00
5 lines
188 B
Ruby
5 lines
188 B
Ruby
|
class ReviewableConversationSerializer < ApplicationSerializer
|
||
|
attributes :id, :permalink, :has_more
|
||
|
has_many :conversation_posts, serializer: ReviewableConversationPostSerializer
|
||
|
end
|