From d039fe0b72d803f50fba5319145d1e6186dbc42f Mon Sep 17 00:00:00 2001 From: morteza-mortezai Date: Mon, 29 Jun 2026 10:43:53 +0330 Subject: [PATCH] enable send otp --- src/modules/auth/services/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/auth/services/auth.service.ts b/src/modules/auth/services/auth.service.ts index e945946..d354938 100644 --- a/src/modules/auth/services/auth.service.ts +++ b/src/modules/auth/services/auth.service.ts @@ -52,7 +52,7 @@ export class AuthService { const key = isAdmin ? this.adminOtpKey(slug, normalizedPhone) : this.userOtpKey(slug, normalizedPhone); await this.cacheService.set(key, code, this.OTP_EXPIRATION_TIME); - // await this.smsService.sendotp(normalizedPhone, code); + await this.smsService.sendotp(normalizedPhone, code); console.log('code', code); return { code: null };