diff --git a/src/auth/controllers/authentication.controller.ts b/src/auth/controllers/authentication.controller.ts index f743326..070620b 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('auth1') + @Post('auth') async Authentication() { return await this.authenticationService.main(); }