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