From c3049262287a731fd2722699a526c731419c6346 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=EB=85=B8=EA=B2=BD=EB=AF=BC?=
<72291860+gengminy@users.noreply.github.com>
Date: Wed, 17 Aug 2022 14:19:41 +0900
Subject: [PATCH 1/2] =?UTF-8?q?:hammer:=20fix(docs):=20readme=20=ED=8F=AC?=
=?UTF-8?q?=EC=8A=A4=ED=8C=85=20=EB=A7=81=ED=81=AC=20=EC=B6=94=EA=B0=80?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
README.md | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 0cd61fd..2e49734 100644
--- a/README.md
+++ b/README.md
@@ -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)
From 2acb23413f65aa595df7f7cbeeb78283de585a51 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E1=84=8B=E1=85=B5=E1=84=8E=E1=85=A1=E1=86=AB=E1=84=8C?=
=?UTF-8?q?=E1=85=B5=E1=86=AB?=
Date: Sat, 20 Aug 2022 16:24:34 +0900
Subject: [PATCH 2/2] =?UTF-8?q?:hammer:=20fix(auth)=20:=20=EC=9D=B8?=
=?UTF-8?q?=EC=A6=9D=EC=9A=A9=20=ED=86=A0=ED=81=B0=20=EA=B8=B0=EA=B0=84=20?=
=?UTF-8?q?=EB=B3=80=ED=99=94?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/auth/auth.service.ts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/auth/auth.service.ts b/src/auth/auth.service.ts
index 8ef9cf3..9007682 100644
--- a/src/auth/auth.service.ts
+++ b/src/auth/auth.service.ts
@@ -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);