Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ public record PostFindCommentResponse(
Long parentId,
String content,
Boolean isOwner,
Boolean isDeleted,
ZonedDateTime createdAt,
ZonedDateTime updatedAt,
PostFindSiteUserResponse postFindSiteUserResponse
Expand All @@ -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)
Expand Down
Loading