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