From 29170613f4f616b900cdfae183a16acc16449ae7 Mon Sep 17 00:00:00 2001 From: seonghyeok Date: Mon, 29 Dec 2025 21:26:23 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20=EA=B2=8C=EC=8B=9C=EA=B8=80=20?= =?UTF-8?q?=EC=A1=B0=ED=9A=8C=20=EC=9D=91=EB=8B=B5=EC=97=90=20=EB=8C=93?= =?UTF-8?q?=EA=B8=80=20deprecated=20=EC=97=AC=EB=B6=80=20=ED=8F=AC?= =?UTF-8?q?=ED=95=A8=ED=95=98=EB=8F=84=EB=A1=9D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../community/comment/dto/PostFindCommentResponse.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/com/example/solidconnection/community/comment/dto/PostFindCommentResponse.java b/src/main/java/com/example/solidconnection/community/comment/dto/PostFindCommentResponse.java index 16446f3ee..172ff23ee 100644 --- a/src/main/java/com/example/solidconnection/community/comment/dto/PostFindCommentResponse.java +++ b/src/main/java/com/example/solidconnection/community/comment/dto/PostFindCommentResponse.java @@ -10,6 +10,7 @@ public record PostFindCommentResponse( Long parentId, String content, Boolean isOwner, + Boolean isDeleted, ZonedDateTime createdAt, ZonedDateTime updatedAt, PostFindSiteUserResponse postFindSiteUserResponse @@ -21,6 +22,7 @@ public static PostFindCommentResponse from(Boolean isOwner, Comment comment, Sit getParentCommentId(comment), getDisplayContent(comment), isOwner, + comment.isDeleted(), comment.getCreatedAt(), comment.getUpdatedAt(), getDisplaySiteUserResponse(comment, siteUser)