2019-05-03 06:17:27 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-01-04 01:03:01 +08:00
|
|
|
class ReviewableConversationSerializer < ApplicationSerializer
|
|
|
|
attributes :id, :permalink, :has_more
|
|
|
|
has_many :conversation_posts, serializer: ReviewableConversationPostSerializer
|
|
|
|
end
|