From 2f12f9c44c10506f6c192584cf6c5ff80530a7a0 Mon Sep 17 00:00:00 2001 From: sdraris Date: Thu, 4 Sep 2025 12:02:12 +0200 Subject: [PATCH] temporary edit to check user creation --- src/routes/auth/auth.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/auth/auth.service.ts b/src/routes/auth/auth.service.ts index b0a382f..a8b113f 100644 --- a/src/routes/auth/auth.service.ts +++ b/src/routes/auth/auth.service.ts @@ -103,7 +103,7 @@ export class AuthService { registerDto.status = StatutUtilisateurType.EN_ATTENTE; // Création de l'utilisateur (UserService gère le hash) - let user: + let user; try { const user = await this.usersService.create(registerDto); } catch (error) {