Skip to content

Commit

Permalink
fix(article): 현재 시간 추가하는 로직
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobhboy committed Apr 30, 2024
1 parent f028424 commit 8c7c8f3
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public Article(String title, String imgUrl, String url, User user) {
this.imgUrl = imgUrl;
this.url = url;
this.user = user;
this.createdAt = LocalDateTime.now();
}

public void update(Article article) {
Expand Down

0 comments on commit 8c7c8f3

Please sign in to comment.