From cb9c5b8b6df48a0271b033f6889bd8a80ae9a395 Mon Sep 17 00:00:00 2001 From: totobon Date: Thu, 2 Nov 2023 23:19:18 +0900 Subject: [PATCH] [dw] test --- src/auth/auth.controller.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/auth/auth.controller.ts b/src/auth/auth.controller.ts index 53ce146..59d7768 100644 --- a/src/auth/auth.controller.ts +++ b/src/auth/auth.controller.ts @@ -32,7 +32,7 @@ interface IOAuthUser { @ApiTags('Auth') @ApiOkResponse({ type: AuthEntity }) export class AuthController { - constructor(private readonly authService: AuthService) {} + constructor(private readonly authService: AuthService) { } //-----------------------로그인-----------------------------// @ApiOperation({ summary: '로그인' }) @ApiResponse({ status: 200, description: '로그인에 성공하셨습니다.' }) @@ -48,6 +48,8 @@ export class AuthController { password, res, }); + console.log("로그인 안되는 사람", accessToken) + console.log("로그인 안되는 사람", refreshToken) res.header('accessToken', accessToken); res.header('refreshToken', refreshToken); res.status(200).json({ userId });