Skip to content

Commit

Permalink
chore: 액세스 토큰 expiration 수정 (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 authored Jul 26, 2024
1 parent 6e07516 commit 84d3465
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layer-api/src/main/java/org/layer/config/AuthValueConfig.java
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ public class AuthValueConfig {
@Value("${jwt.secret}")
private String JWT_SECRET;


public static final Long ACCESS_TOKEN_EXPIRATION_TIME = 1000 * 60 * 30L; // 30분
public static final Long ACCESS_TOKEN_EXPIRATION_TIME = 1000 * 60 * 60 * 24 * 30L; // 한달
// public static final Long ACCESS_TOKEN_EXPIRATION_TIME = 1000 * 60 * 30L; // 30분
public static final Long REFRESH_TOKEN_EXPIRATION_TIME = 1000 * 60 * 60 * 24 * 14L; // 2주
public static final String AUTHORIZATION = "Authorization";
public static final String KAKAO_URI = "https://kapi.kakao.com/v2/user/me";
Expand Down

0 comments on commit 84d3465

Please sign in to comment.