Skip to content

Commit

Permalink
[v1.1.1] 인증토큰 만료시간변화
Browse files Browse the repository at this point in the history
[v1.1.1] 인증토큰 만료시간변화
  • Loading branch information
ImNM committed Aug 20, 2022
2 parents b944522 + b7345d4 commit 88bbad8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@
- [찬진 : transaction with repository](https://devnm.tistory.com/19)
- [찬진 : rollback repository test](https://devnm.tistory.com/20)
- [찬진 : 같은 코드 응답 데코레이터 만들기 시리즈](https://devnm.tistory.com/21)
- [경민 : nestjs + socket.io 사용해서 실시간 공연 입장 시스템 구현하기](https://gengminy.tistory.com/23)
- [경민 : Socket.io 사용해서 실시간 공연 입장 시스템 구현하기](https://gengminy.tistory.com/23)
- [경민 : Guard 사용중인 Controller 내부 특정 메소드에 모든 접근 허가하기 (NoAuth)](https://gengminy.tistory.com/36)
- [경민 : PageDto를 이용한 페이지네이션 구현하기](https://gengminy.tistory.com/37)


<br/>
Expand Down
2 changes: 1 addition & 1 deletion src/auth/auth.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export class AuthService {
const secret = this.configService.get(JWTType.ACCESS);
try {
return jwt.sign(payload, secret, {
expiresIn: 60 * 60 * 24 * 3
expiresIn: 60 * 60 * 24 * 14
});
} catch (error) {
Logger.log(error);
Expand Down

0 comments on commit 88bbad8

Please sign in to comment.