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() return ResponseBoardSummaryDto.builder()
.id(id) .id(id)
.title(title) .title(title)
.name(user.getUserId()) .name(user.getName())
.createdAt(createdAt) .createdAt(createdAt)
.build(); .build();
} }

View File

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