Informations du collaboraeur
diff --git a/src/front/Config/Module/development.json b/src/front/Config/Module/development.json
index fd9cced8..86554edc 100644
--- a/src/front/Config/Module/development.json
+++ b/src/front/Config/Module/development.json
@@ -124,6 +124,15 @@
"props": {
"path": "/collaborators",
"labelKey": "collaborators"
+ },
+ "pages": {
+ "CollaboratorInformations": {
+ "enabled": true,
+ "props": {
+ "path": "/collaborators/[uid]",
+ "labelKey": "collaborator_informations"
+ }
+ }
}
},
"404": {
diff --git a/src/front/Config/Module/preprod.json b/src/front/Config/Module/preprod.json
index fd9cced8..86554edc 100644
--- a/src/front/Config/Module/preprod.json
+++ b/src/front/Config/Module/preprod.json
@@ -124,6 +124,15 @@
"props": {
"path": "/collaborators",
"labelKey": "collaborators"
+ },
+ "pages": {
+ "CollaboratorInformations": {
+ "enabled": true,
+ "props": {
+ "path": "/collaborators/[uid]",
+ "labelKey": "collaborator_informations"
+ }
+ }
}
},
"404": {
diff --git a/src/front/Config/Module/production.json b/src/front/Config/Module/production.json
index fd9cced8..86554edc 100644
--- a/src/front/Config/Module/production.json
+++ b/src/front/Config/Module/production.json
@@ -124,6 +124,15 @@
"props": {
"path": "/collaborators",
"labelKey": "collaborators"
+ },
+ "pages": {
+ "CollaboratorInformations": {
+ "enabled": true,
+ "props": {
+ "path": "/collaborators/[uid]",
+ "labelKey": "collaborator_informations"
+ }
+ }
}
},
"404": {
diff --git a/src/front/Config/Module/staging.json b/src/front/Config/Module/staging.json
index fd9cced8..86554edc 100644
--- a/src/front/Config/Module/staging.json
+++ b/src/front/Config/Module/staging.json
@@ -124,6 +124,15 @@
"props": {
"path": "/collaborators",
"labelKey": "collaborators"
+ },
+ "pages": {
+ "CollaboratorInformations": {
+ "enabled": true,
+ "props": {
+ "path": "/collaborators/[uid]",
+ "labelKey": "collaborator_informations"
+ }
+ }
}
},
"404": {
diff --git a/src/pages/collaborators/[collaboratorUid]/index.tsx b/src/pages/collaborators/[collaboratorUid]/index.tsx
index 300413ce..ec6a1b3d 100644
--- a/src/pages/collaborators/[collaboratorUid]/index.tsx
+++ b/src/pages/collaborators/[collaboratorUid]/index.tsx
@@ -1,5 +1,5 @@
-import Collaborators from "@Front/Components/Layouts/Collaborators";
+import CollaboratorInformations from "@Front/Components/Layouts/Collaborators/CollaboratorInformations";
export default function Route() {
- return ;
+ return ;
}