From bf103dedd745f9073bfb2679baface26624b82bc Mon Sep 17 00:00:00 2001 From: Klaus Date: Tue, 7 Jul 2026 17:55:55 +0900 Subject: [PATCH] =?UTF-8?q?docs(community):=20=EB=8C=93=EA=B8=80=20?= =?UTF-8?q?=EC=9E=91=EC=84=B1=EC=9E=90=20=EC=8B=9D=EB=B3=84=EC=9E=90=20?= =?UTF-8?q?=EA=B3=84=EC=95=BD=EC=9D=84=20=EA=B0=B1=EC=8B=A0=ED=95=9C?= =?UTF-8?q?=EB=8B=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/20260706_커뮤니티_게시물_상세_API/plan-task.md | 6 ++++++ docs/20260706_커뮤니티_게시물_상세_API/prd.md | 2 ++ 2 files changed, 8 insertions(+) diff --git a/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md b/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md index 2e4386d3..6e259d69 100644 --- a/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md +++ b/docs/20260706_커뮤니티_게시물_상세_API/plan-task.md @@ -182,6 +182,7 @@ data class CreatorChannelCommunityCommentsResponse( data class CreatorChannelCommunityCommentResponse( val commentId: Long, + val writerId: Long, val writerProfileImageUrl: String, val writerNickname: String, val content: String, @@ -192,6 +193,7 @@ data class CreatorChannelCommunityCommentResponse( fun from(comment: CreatorChannelCommunityComment): CreatorChannelCommunityCommentResponse { return CreatorChannelCommunityCommentResponse( commentId = comment.commentId, + writerId = comment.writerId, writerProfileImageUrl = comment.writerProfileImageUrl, writerNickname = comment.writerNickname, content = comment.content, @@ -225,6 +227,7 @@ data class CreatorChannelCommunityRepliesResponse( data class CreatorChannelCommunityReplyResponse( val commentId: Long, + val writerId: Long, val writerProfileImageUrl: String, val writerNickname: String, val content: String, @@ -234,6 +237,7 @@ data class CreatorChannelCommunityReplyResponse( fun from(reply: CreatorChannelCommunityReply): CreatorChannelCommunityReplyResponse { return CreatorChannelCommunityReplyResponse( commentId = reply.commentId, + writerId = reply.writerId, writerProfileImageUrl = reply.writerProfileImageUrl, writerNickname = reply.writerNickname, content = reply.content, @@ -270,6 +274,7 @@ data class CreatorChannelCommunityComments( data class CreatorChannelCommunityComment( val commentId: Long, + val writerId: Long, val writerProfileImageUrl: String, val writerNickname: String, val content: String, @@ -286,6 +291,7 @@ data class CreatorChannelCommunityReplies( data class CreatorChannelCommunityReply( val commentId: Long, + val writerId: Long, val writerProfileImageUrl: String, val writerNickname: String, val content: String, diff --git a/docs/20260706_커뮤니티_게시물_상세_API/prd.md b/docs/20260706_커뮤니티_게시물_상세_API/prd.md index 2f65d3ca..e1b1b274 100644 --- a/docs/20260706_커뮤니티_게시물_상세_API/prd.md +++ b/docs/20260706_커뮤니티_게시물_상세_API/prd.md @@ -194,6 +194,7 @@ data class CreatorChannelCommunityCommentsResponse( data class CreatorChannelCommunityCommentResponse( val commentId: Long, + val writerId: Long, val writerProfileImageUrl: String, val writerNickname: String, val content: String, @@ -203,6 +204,7 @@ data class CreatorChannelCommunityCommentResponse( data class CreatorChannelCommunityReplyResponse( val commentId: Long, + val writerId: Long, val writerProfileImageUrl: String, val writerNickname: String, val content: String,