From 641d0926e9d4168cc4cf04405befbb2290a69868 Mon Sep 17 00:00:00 2001 From: sdraris Date: Mon, 22 Sep 2025 10:53:11 +0200 Subject: [PATCH] profile dto added --- src/routes/user/dto/profile_response.dto.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/user/dto/profile_response.dto.ts b/src/routes/user/dto/profile_response.dto.ts index 346c757..4ae9d65 100644 --- a/src/routes/user/dto/profile_response.dto.ts +++ b/src/routes/user/dto/profile_response.dto.ts @@ -12,10 +12,10 @@ export class ProfileResponseDto { role: RoleType; @ApiProperty() - prenom: string; + prenom?: string; @ApiProperty() - nom: string; + nom?: string; @ApiProperty({ enum: StatutUtilisateurType }) statut: StatutUtilisateurType;