폼 전송 TDD추가 및 암호화 적용 중
CI / test (push) Failing after 4m41s
CI / pr_and_merge (push) Has been skipped

This commit is contained in:
2025-12-02 11:02:15 +09:00
parent d0766fca45
commit 3e223a45d4
40 changed files with 1290 additions and 31 deletions
+2 -2
View File
@@ -74,10 +74,10 @@ export async function signAccessToken(user: JwtUserLike): Promise<string> {
tokenVersion: user.tokenVersion,
};
// 만료 시간은 기본 15분으로 설정한다.
// 만료 시간은 기본 7일으로 설정한다.
const token = jwt.sign(payload, secret, {
algorithm: "HS256",
expiresIn: "15m",
expiresIn: "7d",
});
return token;