Skip to content

Commit

Permalink
fix(BE): 정상 작동 확인 버그 수정 완료 #114
Browse files Browse the repository at this point in the history
  • Loading branch information
namhyo01 committed Oct 19, 2023
1 parent 84be868 commit 3996c11
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,7 @@ public String genereateRefreshToken(String id, String role, String provider) {
}

public String generateAccessToken(String id, String role, String provider) {
// long tokenPeriod = 1000L * 60L * 60L; // 1시간 유효성
long tokenPeriod = 1000L * 60L; // 1시간 유효성
long tokenPeriod = 1000L * 60L * 60L; // 1시간 유효성
return getToken(id, role, provider, tokenPeriod);
}

Expand Down

0 comments on commit 3996c11

Please sign in to comment.