From 8ec6d50dd82727c50857a741c8eb0ee58e5ccf47 Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 25 Nov 2025 18:10:36 +0900 Subject: [PATCH] =?UTF-8?q?feat(content-comment):=20=EC=BD=98=ED=85=90?= =?UTF-8?q?=EC=B8=A0=20=EB=8C=93=EA=B8=80=20=EC=A1=B0=ED=9A=8C=EC=8B=9C=20?= =?UTF-8?q?=EA=B2=B0=EA=B3=BC=EC=97=90=20=EC=96=B8=EC=96=B4=20=EC=BD=94?= =?UTF-8?q?=EB=93=9C=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../sodalive/content/comment/AudioContentCommentRepository.kt | 2 ++ .../content/comment/GetAudioContentCommentListResponse.kt | 1 + 2 files changed, 3 insertions(+) diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt index b49c209..09ef520 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/AudioContentCommentRepository.kt @@ -85,6 +85,7 @@ class AudioContentCommentQueryRepositoryImpl( audioContentComment.member.nickname, audioContentComment.member.profileImage.prepend("/").prepend(cloudFrontHost), audioContentComment.comment, + audioContentComment.languageCode, audioContentComment.isSecret, audioContentComment.donationCan.coalesce(0), formattedDate, @@ -166,6 +167,7 @@ class AudioContentCommentQueryRepositoryImpl( audioContentComment.member.nickname, audioContentComment.member.profileImage.prepend("/").prepend(cloudFrontHost), audioContentComment.comment, + audioContentComment.languageCode, audioContentComment.isSecret, audioContentComment.donationCan.coalesce(0), formattedDate, diff --git a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt index 37bd46a..b0d1160 100644 --- a/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt +++ b/src/main/kotlin/kr/co/vividnext/sodalive/content/comment/GetAudioContentCommentListResponse.kt @@ -13,6 +13,7 @@ data class GetAudioContentCommentListItem @QueryProjection constructor( val nickname: String, val profileUrl: String, val comment: String, + val languageCode: String?, val isSecret: Boolean, val donationCan: Int, val date: String,