Skip to content

Commit

Permalink
만료기간 증가
Browse files Browse the repository at this point in the history
  • Loading branch information
ParkJunGyu26 committed Dec 2, 2023
1 parent cb1af07 commit d94b9e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/userService.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ exports.postSignIn = async function (userId, userPw) {
},
secret.JWT_SECRET, // 사용할 secret 키
{
expiresIn: '1d' // 토큰 만료 시간 일단 하루로 설정
expiresIn: '365d' // 토큰 만료 시간
}
);

Expand Down

0 comments on commit d94b9e1

Please sign in to comment.