Skip to content

Commit

Permalink
🔀 Merge
Browse files Browse the repository at this point in the history
  • Loading branch information
benjlevesque committed Jan 15, 2025
1 parent cea1626 commit e986423
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const handleAbandonAccordé = async ({
type: 'Lauréat.Actionnaire.Command.SupprimerChangementActionnaire',
data: {
identifiantProjet: IdentifiantProjet.convertirEnValueType(identifiantProjet),
identifiantUtilisateur: Email.system(),
identifiantUtilisateur: Email.system,
dateSuppression: DateTime.now(),
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const handleAttestationConformitéTransmise = async ({
type: 'Lauréat.Actionnaire.Command.SupprimerChangementActionnaire',
data: {
identifiantProjet: IdentifiantProjet.convertirEnValueType(identifiantProjet),
identifiantUtilisateur: Email.system(),
identifiantUtilisateur: Email.system,
dateSuppression: DateTime.now(),
},
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export const handleTâchePlanifiéeGestionAutomatiqueDemandeChangementExecutée
type: 'Lauréat.ReprésentantLégal.UseCase.AccorderChangementReprésentantLégal',
data: {
identifiantProjetValue: identifiantProjet.formatter(),
identifiantUtilisateurValue: Email.system().formatter(),
identifiantUtilisateurValue: Email.system.formatter(),
dateAccordValue: DateTime.now().formatter(),
nomReprésentantLégalValue: changement.demande.nomReprésentantLégal,
typeReprésentantLégalValue: changement.demande.typeReprésentantLégal.formatter(),
Expand All @@ -84,7 +84,7 @@ export const handleTâchePlanifiéeGestionAutomatiqueDemandeChangementExecutée
type: 'Lauréat.ReprésentantLégal.UseCase.RejeterChangementReprésentantLégal',
data: {
identifiantProjetValue: identifiantProjet.formatter(),
identifiantUtilisateurValue: Email.system().formatter(),
identifiantUtilisateurValue: Email.system.formatter(),
motifRejetValue: 'Rejet automatique',
dateRejetValue: DateTime.now().formatter(),
rejetAutomatiqueValue: true,
Expand Down

0 comments on commit e986423

Please sign in to comment.