Skip to content

Commit

Permalink
feat: refresh token 만료기한 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
abc5259 committed Aug 23, 2024
1 parent 69ca26b commit 382c192
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
@RequiredArgsConstructor
public class TokenService {

public final static Long REFRESH_TOKEN_TTL = 3600L; //1시간
public final static Long REFRESH_TOKEN_TTL = 3600L * 24; //1시간

private final TokenProvider tokenProvider;

Expand Down

0 comments on commit 382c192

Please sign in to comment.