This commit is contained in:
faris Aljohari
2024-07-30 16:22:12 +03:00
parent 9eabda2463
commit bb4ba44ac3

View File

@ -9,7 +9,7 @@ import { ApiTags } from '@nestjs/swagger';
@ApiTags('Tuya Auth')
export class AuthenticationController {
constructor(private readonly authenticationService: AuthenticationService) {}
@Post('auth')
@Post('auth2')
async Authentication() {
return await this.authenticationService.main();
}