This commit is contained in:
2026-01-14 15:30:13 +03:30
parent aed4a1b333
commit 364f32e254
4 changed files with 10 additions and 8 deletions
+2 -2
View File
@@ -44,9 +44,9 @@ export class AuthService {
await this.cacheService.set(key, code, this.OTP_EXPIRATION_TIME);
await this.smsService.sendotp(normalizedPhone, code);
// await this.smsService.sendotp(normalizedPhone, code);
return { code: null };
return { code };
}
async verifyOtp(phone: string, code: string) {