From 0a4f3d59f8829b7d672adaa926a985e7e2781594 Mon Sep 17 00:00:00 2001 From: sdraris Date: Tue, 23 Sep 2025 11:59:27 +0200 Subject: [PATCH] user service corrected --- src/routes/user/user.service.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/routes/user/user.service.ts b/src/routes/user/user.service.ts index f1ec4d9..15eb83e 100644 --- a/src/routes/user/user.service.ts +++ b/src/routes/user/user.service.ts @@ -173,7 +173,7 @@ export class UserService { type: 'validation_compte', status: StatutValidationType.VALIDE, validated_by: currentUser, - comment + comment, }); await this.validationRepository.save(validation); @@ -194,7 +194,7 @@ export class UserService { type: 'suspension_compte', status: StatutValidationType.VALIDE, validated_by: currentUser, - comment + comment, }) await this.validationRepository.save(suspend); return savedUser;