Skip to content

Commit

Permalink
토큰 유지 시간변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yooonwodyd committed Dec 24, 2023
1 parent 9f52b04 commit c110b84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class AccountService {
private final AccountRepository accountRepository;
@Value("${jwt.secret}")
private String secretKey;
private Long expiredMs = 1000*60*60*24*3L; //한시간
private Long expiredMs = 1000*60*60*24*12L; //한시간

@Transactional
public Account save(AccountDto accountDto) {
Expand Down

0 comments on commit c110b84

Please sign in to comment.