From f13c221fd638e5fc3deb0a8cbe3835ad43f4f017 Mon Sep 17 00:00:00 2001 From: Klaus Date: Fri, 13 Jun 2025 16:51:10 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=BB=A4=EB=AE=A4=EB=8B=88=ED=8B=B0=20?= =?UTF-8?q?=EB=8C=93=EA=B8=80=20=EC=A1=B0=ED=9A=8C=20-=20=EA=B2=B0?= =?UTF-8?q?=EA=B3=BC=EA=B0=92=EC=97=90=20isSecret(=EB=B9=84=EB=B0=80=20?= =?UTF-8?q?=EB=8C=93=EA=B8=80=20=EC=97=AC=EB=B6=80)=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../comment/CreatorCommunityCommentRepository.kt | 4 +++- .../comment/GetCommunityPostCommentListResponse.kt | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) 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 )