Skip to content
Merged
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 @@ -8,6 +8,7 @@
@Builder
public record ReadCommentResponse(
int commentId,
int userId,
String content,
String userName,
String profileImage,
Expand All @@ -16,6 +17,7 @@ public record ReadCommentResponse(
public static ReadCommentResponse fromEntity(Comment comment) {
return ReadCommentResponse.builder()
.commentId(comment.getCommentId())
.userId(comment.getUser().getUserId())
.content(comment.getContent())
.userName(comment.getUser().getName())
.profileImage(comment.getUser().getProfilePic())
Expand Down
Loading