Skip to content

Commit

Permalink
fix: 실험용으로 변경한 accessToken 기한 5초에서 1시간으로 되돌리기
Browse files Browse the repository at this point in the history
  • Loading branch information
dbwhdtjr0457 committed Dec 13, 2023
1 parent 3ddbdcd commit 7aa73aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BE/src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class AuthService {
): Promise<string> {
const accessTokenPayload = { userId };
const accessToken = await this.jwtService.sign(accessTokenPayload, {
expiresIn: "5s",
expiresIn: "1h",
});

const refreshTokenPayload = {
Expand Down

0 comments on commit 7aa73aa

Please sign in to comment.