Skip to content

Commit

Permalink
chore: 토큰 name 테스트
Browse files Browse the repository at this point in the history
  • Loading branch information
dong2ast committed Jul 22, 2024
1 parent 27a64d8 commit d7a977a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/uspray/uspray/jwt/TokenProvider.java
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ public TokenDto generateTokenDto(Authentication authentication) {

long now = (new Date()).getTime();

System.out.println(authentication.getName());
// access token
Date accessTokenExpiresIn = new Date(now + ACCESS_TOKEN_EXPIRE_TIME);
String accessToken = Jwts.builder()
Expand Down

0 comments on commit d7a977a

Please sign in to comment.