From 33c45c7c2b7b8d22bf007d0680b6045531ef6a4c Mon Sep 17 00:00:00 2001 From: jinddings Date: Thu, 7 Nov 2024 15:51:59 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix:=20login=20API=20=EB=A9=94?= =?UTF-8?q?=EC=86=8C=EB=93=9C=20GET=20->=20POST=20=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- BE/src/auth/auth.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BE/src/auth/auth.controller.ts b/BE/src/auth/auth.controller.ts index 46eb0d6a..8411eb48 100644 --- a/BE/src/auth/auth.controller.ts +++ b/BE/src/auth/auth.controller.ts @@ -23,7 +23,7 @@ export class AuthController { } @ApiOperation({ summary: '로그인 API' }) - @Get('/login') + @Post('/login') loginWithCredentials( @Body(ValidationPipe) authCredentialsDto: AuthCredentialsDto, ) {