mirror of
https://git.v0id.ovh/n3wt-innov/n3wt-school.git
synced 2026-01-28 23:43:22 +00:00
chore: Initial Commit
feat: Gestion des inscriptions [#1] feat(frontend): Création des vues pour le paramétrage de l'école [#2] feat: Gestion du login [#6] fix: Correction lors de la migration des modèle [#8] feat: Révision du menu principal [#9] feat: Ajout d'un footer [#10] feat: Création des dockers compose pour les environnements de développement et de production [#12] doc(ci): Mise en place de Husky et d'un suivi de version automatique [#14]
This commit is contained in:
63
Back-End/GestionInscriptions/Configuration/automate.json
Normal file
63
Back-End/GestionInscriptions/Configuration/automate.json
Normal file
@ -0,0 +1,63 @@
|
||||
{
|
||||
"states": [
|
||||
"ABSENT",
|
||||
"CREE",
|
||||
"ENVOYE",
|
||||
"EN_VALIDATION",
|
||||
"A_RELANCER",
|
||||
"VALIDE",
|
||||
"ARCHIVE"
|
||||
],
|
||||
"transitions": [
|
||||
{
|
||||
"name": "creationDI",
|
||||
"from": "ABSENT",
|
||||
"to": "CREE"
|
||||
},
|
||||
{
|
||||
"name": "envoiDI",
|
||||
"from": "CREE",
|
||||
"to": "ENVOYE"
|
||||
},
|
||||
{
|
||||
"name": "archiveDI",
|
||||
"from": "CREE",
|
||||
"to": "ARCHIVE"
|
||||
},
|
||||
{
|
||||
"name": "saisiDI",
|
||||
"from": "ENVOYE",
|
||||
"to": "EN_VALIDATION"
|
||||
},
|
||||
{
|
||||
"name": "relanceDI",
|
||||
"from": "ENVOYE",
|
||||
"to": "A_RELANCER"
|
||||
},
|
||||
{
|
||||
"name": "archiveDI",
|
||||
"from": "A_RELANCER",
|
||||
"to": "ARCHIVE"
|
||||
},
|
||||
{
|
||||
"name": "archiveDI",
|
||||
"from": "ENVOYE",
|
||||
"to": "ARCHIVE"
|
||||
},
|
||||
{
|
||||
"name": "valideDI",
|
||||
"from": "EN_VALIDATION",
|
||||
"to": "VALIDE"
|
||||
},
|
||||
{
|
||||
"name": "archiveDI",
|
||||
"from": "EN_VALIDATION",
|
||||
"to": "ARCHIVE"
|
||||
},
|
||||
{
|
||||
"name": "archiveDI",
|
||||
"from": "VALIDE",
|
||||
"to": "ARCHIVE"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user