Skip to content

Commit

Permalink
fix: 답글 생성 시 editedAt 필드 적용 (#820)
Browse files Browse the repository at this point in the history
  • Loading branch information
gywns0417 authored Dec 23, 2024
1 parent f1e0456 commit b005fa8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/balancetalk/comment/dto/CommentDto.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public Comment toEntity(Member member, TalkPick talkPick, Comment parent) {
.isBest(false)
.viewStatus(ViewStatus.NORMAL)
.parent(parent)
.editedAt(LocalDateTime.now())
.isEdited(false)
.build();
}
Expand Down

0 comments on commit b005fa8

Please sign in to comment.