refactor : board name 출력 변경

This commit is contained in:
yulmam 2024-08-06 16:47:01 +09:00
parent a14ba8b04b
commit a4b3bab290
2 changed files with 2 additions and 2 deletions

View File

@ -62,7 +62,7 @@ public class Board {
return ResponseBoardSummaryDto.builder()
.id(id)
.title(title)
.name(user.getUserId())
.name(user.getName())
.createdAt(createdAt)
.build();
}

View File

@ -42,7 +42,7 @@ public class Comment {
public ResponseCommentDto makeCommentDto() {
return ResponseCommentDto.builder()
.id(id)
.name(user.getEmail())
.name(user.getName())
.content(content)
.createAt(createdAt)
.modifiedAt(modifiedAt)