double-auth-server-action.ts
1 export const DoubleAuthServerAction = { 2 csch_VerifierPIN: 0, 3 csch_VerifierMotDePassePersonnalise: 1, // set a new password when asked at login 4 5 csch_LibellesSourceConnexionDejaConnus: 2, 6 csch_EnregistrerChoixUtilisateur: 3, 7 csch_AffecterModeDoubleAuthentification: 4, 8 csch_AffecterCodePIN: 5, 9 csch_RenommerSourceConnexionConnue: 6, 10 csch_SupprimerSourceConnexionConnue: 7, 11 csch_AffecterMotDePassePersonnalise: 8, 12 csch_ModifierLogin: 9, 13 csch_DemandeReinitialisationPIN: 10, 14 csch_VerifierCodeReinitialisationPIN: 11 15 } as const; 16 17 export type DoubleAuthServerAction = typeof DoubleAuthServerAction[keyof typeof DoubleAuthServerAction];