Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Merge] 토큰 시간 무제한으로 변경 #78

Merged
merged 2 commits into from
Jan 14, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ public class AuthService {
private final SlackApi slackApi;


private final Long TOKEN_EXPIRATION_TIME_ACCESS = 60* 60 * 1000L; //1분
private final Long TOKEN_EXPIRATION_TIME_REFRESH = 3*60 * 60 * 1000L; //3분
private final Long TOKEN_EXPIRATION_TIME_ACCESS = 60*60*60* 60 * 1000L; //3600시간
private final Long TOKEN_EXPIRATION_TIME_REFRESH = 60*60*3*60 * 60 * 1000L; //3*3600시간
@Value("${static-image.root}")
private String BASIC_ROOT;

Expand Down