From e028917bacf3552f921fb81b3cbbc4fc8f1ef841 Mon Sep 17 00:00:00 2001 From: jinddings Date: Thu, 14 Nov 2024 11:51:50 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20fix=20:=20auth=20api=20=EA=B2=BD?= =?UTF-8?q?=EB=A1=9C=20=EB=B3=80=EA=B2=BD(#57)?= 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 98c3d7ad..8fcdf300 100644 --- a/BE/src/auth/auth.controller.ts +++ b/BE/src/auth/auth.controller.ts @@ -16,7 +16,7 @@ import { ConfigService } from '@nestjs/config'; import { AuthService } from './auth.service'; import { AuthCredentialsDto } from './dto/auth-credentials.dto'; -@Controller('auth') +@Controller('/api/auth') export class AuthController { constructor( private authService: AuthService,