Skip to content

Commit

Permalink
dd
Browse files Browse the repository at this point in the history
  • Loading branch information
jeong011010 committed Oct 15, 2024
1 parent 7975f90 commit 099644a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public EmailVerificationToken(String token, User user) {

this.token = token;
this.user = user;
this.expiryDate = LocalDateTime.now(ZoneOffset.UTC).plusMinutes(30); // μœ νš¨μ‹œκ°„ 30λΆ„
this.expiryDate = LocalDateTime.now(ZoneOffset.UTC).plusHours(24); // μœ νš¨μ‹œκ°„ 30λΆ„
System.out.println("Token Expiry Time (UTC): " + this.expiryDate);
System.out.println("Current Time (UTC): " + LocalDateTime.now(ZoneOffset.UTC));

Expand Down

0 comments on commit 099644a

Please sign in to comment.