diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt index 1c8b7a9..d6390ff 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/CreatorCommunityCommentRepository.kt @@ -81,6 +81,7 @@ class CreatorCommunityCommentQueryRepositoryImpl( creatorCommunityComment.member.nickname, creatorCommunityComment.member.profileImage.prepend("/").prepend(imageHost), creatorCommunityComment.comment, + creatorCommunityComment.isSecret, formattedDate, Expressions.constant(0) ) @@ -156,8 +157,9 @@ class CreatorCommunityCommentQueryRepositoryImpl( creatorCommunityComment.id, creatorCommunityComment.member.id, creatorCommunityComment.member.nickname, - creatorCommunityComment.member.profileImage.prepend(imageHost), + creatorCommunityComment.member.profileImage.prepend("/").prepend(imageHost), creatorCommunityComment.comment, + creatorCommunityComment.isSecret, formattedDate, Expressions.constant(0) ) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/GetCommunityPostCommentListResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/GetCommunityPostCommentListResponse.kt index 824372f..2d24d08 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/GetCommunityPostCommentListResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/explorer/profile/creatorCommunity/comment/GetCommunityPostCommentListResponse.kt @@ -13,6 +13,7 @@ data class GetCommunityPostCommentListItem @QueryProjection constructor( val nickname: String, val profileUrl: String, val comment: String, + val isSecret: Boolean, val date: String, var replyCount: Int )