Skip to content

Commit

Permalink
Merge branch 'refs/heads/main' into feature/184
Browse files Browse the repository at this point in the history
  • Loading branch information
pillow12360 committed Dec 21, 2024
2 parents d0402a0 + 84f8047 commit d063192
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public static BoardResDto of(Board board) {
.content(board.getContent())
.writer(board.getWriter())
.fileList(board.getFileList())
.createDate(TimeParsingUtils.toRelativeTimeFormat(board.getCreatedDateTime()))
.createDate(TimeParsingUtils.toRelativeTimeFormat(board.getCreatedDate()))
.viewCount(board.getViewCount())
.category(board.getCategory().name())
.build();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public class Board extends BaseEntity {
private List<String> fileList;

@Column(name = "created_date")
private LocalDateTime createdDateTime;
private LocalDateTime createdDate;

@Enumerated(EnumType.STRING)
@Column(name = "category")
Expand Down

0 comments on commit d063192

Please sign in to comment.