Skip to content

Commit

Permalink
[REMANIEMENT][AUTHENTIFICATION] Remplace l’appel au service Aidant pa…
Browse files Browse the repository at this point in the history
…r la recherche utilisateur MAC lors de l’authentification
  • Loading branch information
bbougon committed Jan 23, 2025
1 parent eb723c2 commit a4eca07
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions mon-aide-cyber-api/src/api/routesAPIAuthentification.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { constructeurActionsHATEOAS, ReponseHATEOAS } from './hateoas/hateoas';
import { RequeteUtilisateur } from './routesAPI';
import { adaptateurConfigurationLimiteurTraffic } from './adaptateurLimiteurTraffic';
import { UtilisateurAuthentifie } from '../authentification/Utilisateur';
import { unServiceAidant } from '../espace-aidant/ServiceAidantMAC';
import { uneRechercheUtilisateursMAC } from '../recherche-utilisateurs-mac/rechercheUtilisateursMAC';

export type CorpsRequeteAuthentification = {
identifiant: string;
Expand Down Expand Up @@ -52,10 +52,10 @@ export const routesAPIAuthentification = (
.pour({ contexte: 'aidant:acceder-aux-informations-utilisateur' })
.pour({ contexte: 'se-deconnecter' })
.construis();
return unServiceAidant(entrepots.aidants())
.parIdentifiant(utilisateurAuthentifie.identifiant)
.then((aidant) => {
if (!aidant?.dateSignatureCGU) {
return uneRechercheUtilisateursMAC(entrepots.utilisateursMAC())
.rechercheParIdentifiant(utilisateurAuthentifie.identifiant)
.then((utilisateur) => {
if (!utilisateur?.dateValidationCGU) {
reponseHATEOAS = constructeurActionsHATEOAS()
.pour({ contexte: 'valider-signature-cgu' })
.construis();
Expand Down

0 comments on commit a4eca07

Please sign in to comment.