|
|
@ -1,20 +1,23 @@ |
|
|
|
const paths_collaborateurs = { |
|
|
|
const paths_collaborateurs = { |
|
|
|
base: "/collaborateurs", |
|
|
|
base: "/collaborateurs", |
|
|
|
path: "collaborateurs", |
|
|
|
path: "collaborateurs", |
|
|
|
formation: "formations", |
|
|
|
get: ":id", |
|
|
|
evaluation: "evaluation", |
|
|
|
formations: ":id/formations", |
|
|
|
edit: "edit" |
|
|
|
evaluation: ":id/formations/evaluation/:id", |
|
|
|
|
|
|
|
edit: ":id/formations/evaluation/:id/edit" |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const paths_demandes_delegation = { |
|
|
|
const paths_demandes_delegation = { |
|
|
|
base: "/demandesdelegation", |
|
|
|
base: "/demandesdelegation", |
|
|
|
path: "demandesdelegation" |
|
|
|
path: "demandesdelegation", |
|
|
|
|
|
|
|
get: ":id" |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const paths_demandes_formation = { |
|
|
|
const paths_demandes_formation = { |
|
|
|
base: "/demandesformation", |
|
|
|
base: "/demandesformation", |
|
|
|
path: "demandesformation", |
|
|
|
path: "demandesformation", |
|
|
|
new: "nouvelledemande" |
|
|
|
get: ":id", |
|
|
|
|
|
|
|
new: "nouvelledemandeformation" |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const paths_ep = { |
|
|
|
const paths_ep = { |
|
|
@ -24,10 +27,18 @@ const paths_ep = { |
|
|
|
choixdate: "choixdate", |
|
|
|
choixdate: "choixdate", |
|
|
|
demandedelegation: "demandedelegation", |
|
|
|
demandedelegation: "demandedelegation", |
|
|
|
demandesformation: "demandesformation", |
|
|
|
demandesformation: "demandesformation", |
|
|
|
propositiondate: "propositiondate", |
|
|
|
propositionsdates: "propositiondate", |
|
|
|
participants: "participants", |
|
|
|
participants: "participants", |
|
|
|
commentaireAssistante: "commentaireassistante", |
|
|
|
commentaireAssistante: "commentaireassistante", |
|
|
|
commentaireReferent: "commentairereferent" |
|
|
|
commentaireReferent: "commentairereferent", |
|
|
|
|
|
|
|
signature: "signature", |
|
|
|
|
|
|
|
epa: "epa", |
|
|
|
|
|
|
|
eps: "eps", |
|
|
|
|
|
|
|
epa6ans: "epasixans", |
|
|
|
|
|
|
|
assistant: "commentaireassistant", |
|
|
|
|
|
|
|
referent: "commentairereferent", |
|
|
|
|
|
|
|
consultation: ":id", |
|
|
|
|
|
|
|
newparticipant: "ajoutparticipant" |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const paths_saisie_ep = { |
|
|
|
const paths_saisie_ep = { |
|
|
@ -41,8 +52,10 @@ const paths_saisie_ep = { |
|
|
|
const paths_formation = { |
|
|
|
const paths_formation = { |
|
|
|
base: "/formations", |
|
|
|
base: "/formations", |
|
|
|
path: "formations", |
|
|
|
path: "formations", |
|
|
|
new: "nouvelleformation", |
|
|
|
get: ":id", |
|
|
|
evaluation: "evaluation" |
|
|
|
edit: ":id/edit", |
|
|
|
|
|
|
|
//evaluation: ":id/evaluation/ideval",
|
|
|
|
|
|
|
|
new: "nouvelleformation" |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
const paths_home = { |
|
|
|
const paths_home = { |
|
|
@ -53,7 +66,8 @@ const paths_home = { |
|
|
|
|
|
|
|
|
|
|
|
const paths_referents = { |
|
|
|
const paths_referents = { |
|
|
|
base: "/referents", |
|
|
|
base: "/referents", |
|
|
|
path: "referents" |
|
|
|
path: "referents", |
|
|
|
|
|
|
|
get: ":id" |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
export { paths_collaborateurs, paths_demandes_delegation, paths_demandes_formation, |
|
|
|
export { paths_collaborateurs, paths_demandes_delegation, paths_demandes_formation, |
|
|
|