From 7a7bbfd919ee802b3d2ea5fa0d12d8c31bd29132 Mon Sep 17 00:00:00 2001 From: hobiJeong Date: Wed, 15 Nov 2023 01:41:04 +0900 Subject: [PATCH] =?UTF-8?q?test(#11):=20passThrough=20=EC=A0=81=EC=9A=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/auth/controllers/auth.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/auth/controllers/auth.controller.ts b/src/auth/controllers/auth.controller.ts index 5bfc2e7..11fd71c 100644 --- a/src/auth/controllers/auth.controller.ts +++ b/src/auth/controllers/auth.controller.ts @@ -64,7 +64,7 @@ export class AuthController { @ApiKakaoLogin() @Get('kakao/login') - async kakaoLogin(@Query() { code }, @Res() res) { + async kakaoLogin(@Query() { code }, @Res({ passthrough: true }) res) { if (!code) { throw new BadRequestException('인가코드가 없습니다.'); }