From 128fb232d02dfe539cb7070d1989f3793fb83dc8 Mon Sep 17 00:00:00 2001 From: Klaus Date: Wed, 8 Jul 2026 01:26:13 +0900 Subject: [PATCH] =?UTF-8?q?docs(community):=20=EB=B9=84=EB=B0=80=20?= =?UTF-8?q?=EB=8C=93=EA=B8=80=20=EA=B5=AC=ED=98=84=20=EA=B3=84=ED=9A=8D?= =?UTF-8?q?=EC=9D=84=20=EA=B0=B1=EC=8B=A0=ED=95=9C=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/20260706_커뮤니티_게시물_상세_API/plan-task.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md b/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md index 6e259d69..8961099b 100644 --- a/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md +++ b/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md @@ -186,6 +186,8 @@ data class CreatorChannelCommunityCommentResponse( val writerProfileImageUrl: String, val writerNickname: String, val content: String, + @JsonProperty("isSecret") + val isSecret: Boolean, val createdAtUtc: String, val latestReply: CreatorChannelCommunityReplyResponse? ) { @@ -197,6 +199,7 @@ data class CreatorChannelCommunityCommentResponse( writerProfileImageUrl = comment.writerProfileImageUrl, writerNickname = comment.writerNickname, content = comment.content, + isSecret = comment.isSecret, createdAtUtc = comment.createdAt.toUtcIso(), latestReply = comment.latestReply?.let(CreatorChannelCommunityReplyResponse::from) ) @@ -278,6 +281,7 @@ data class CreatorChannelCommunityComment( val writerProfileImageUrl: String, val writerNickname: String, val content: String, + val isSecret: Boolean, val createdAt: LocalDateTime, val latestReply: CreatorChannelCommunityReply? ) @@ -353,6 +357,7 @@ data class CreatorChannelCommunityCommentRecord( val writerProfilePath: String?, val writerNickname: String, val content: String, + val isSecret: Boolean, val createdAt: LocalDateTime )