Skip to content

Commit 0a2af8d

Browse files
Suppression de la valeur de retour inutile dans le service de validation des identités
1 parent 4427f67 commit 0a2af8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/management/identities/validations/identities.validation.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export class IdentitiesValidationService {
8989
if (reject) {
9090
throw new ValidationSchemaException({ validations });
9191
}
92-
return Promise.resolve({ message: 'Validation succeeded', validations });
92+
return Promise.resolve({ message: 'Validation succeeded' });
9393
}
9494

9595
/**

0 commit comments

Comments
 (0)