diff --git a/src/auth/auth.controller.ts b/src/auth/auth.controller.ts index d706461..cb6a9f1 100644 --- a/src/auth/auth.controller.ts +++ b/src/auth/auth.controller.ts @@ -25,7 +25,7 @@ export class AuthController { async signIn(@Body() data: registerDto) { return this.authService.signIn(data); } - + //@UseGuards() @Post("register") async register(@Body() data: registerDto){ return this.authService.register(data)