diff --git a/src/auth/controllers/authentication.controller.ts b/src/auth/controllers/authentication.controller.ts index 070620b..f743326 100644 --- a/src/auth/controllers/authentication.controller.ts +++ b/src/auth/controllers/authentication.controller.ts @@ -9,7 +9,7 @@ import { ApiTags } from '@nestjs/swagger'; @ApiTags('Tuya Auth') export class AuthenticationController { constructor(private readonly authenticationService: AuthenticationService) {} - @Post('auth') + @Post('auth1') async Authentication() { return await this.authenticationService.main(); }