@@ -63,6 +63,60 @@ const surgeOverview = customWrapRoute({
6363 } ,
6464} ) ;
6565
66+ const activeSurgeDeployments = customWrapRoute ( {
67+ parent : surgeLayout ,
68+ path : 'active-surge-deployments' ,
69+ component : {
70+ render : ( ) => import ( '#views/ActiveSurgeDeployments' ) ,
71+ props : { } ,
72+ } ,
73+ context : {
74+ title : 'Active Surge Deployments' ,
75+ visibility : 'anything' ,
76+ } ,
77+ } ) ;
78+
79+ const rapidResponsePersonnel = customWrapRoute ( {
80+ parent : surgeOverview ,
81+ path : 'rapid-response-personnel' ,
82+ component : {
83+ render : ( ) => import ( '#views/SurgeOverview/RapidResponsePersonnel' ) ,
84+ props : { } ,
85+ } ,
86+ context : {
87+ title : 'Rapid Response Personnel' ,
88+ visibility : 'anything' ,
89+ } ,
90+ } ) ;
91+
92+ const emergencyResponseUnit = customWrapRoute ( {
93+ parent : surgeOverview ,
94+ path : 'emergency-response-unit' ,
95+ component : {
96+ render : ( ) => import ( '#views/SurgeOverview/EmergencyResponseUnit' ) ,
97+ props : { } ,
98+ } ,
99+ context : {
100+ title : 'Emergency Response Unit' ,
101+ visibility : 'anything' ,
102+ } ,
103+ } ) ;
104+
105+ const updateERUReadinessForm = customWrapRoute ( {
106+ parent : rootLayout ,
107+ path : 'update-eru-readiness' ,
108+ component : {
109+ // TODO: Add ERUReadinessUpdateForm Route
110+ render : ( ) => import ( '#views/Home' ) ,
111+ props : { } ,
112+ } ,
113+ wrapperComponent : Auth ,
114+ context : {
115+ title : 'ERU Readiness Update Form' ,
116+ visibility : 'anything' ,
117+ } ,
118+ } ) ;
119+
66120const surgeOperationalToolbox = customWrapRoute ( {
67121 parent : surgeLayout ,
68122 path : 'operational-toolbox' ,
@@ -1423,7 +1477,7 @@ const deploymentCatalogueIndex = customWrapRoute({
14231477 } ,
14241478 wrapperComponent : Auth ,
14251479 context : {
1426- title : 'Catalogue of surge services ' ,
1480+ title : 'Catalogue of Surge Services ' ,
14271481 visibility : 'anything' ,
14281482 } ,
14291483} ) ;
@@ -1438,7 +1492,7 @@ const deploymentCatalogueChildren = customWrapRoute({
14381492 } ,
14391493 wrapperComponent : Auth ,
14401494 context : {
1441- title : 'Catalogue of surge services ' ,
1495+ title : 'Catalogue of Surge Services ' ,
14421496 visibility : 'anything' ,
14431497 } ,
14441498} ) ;
@@ -1555,4 +1609,8 @@ export default {
15551609 deploymentCatalogueChildren,
15561610 deploymentOthers,
15571611 obsoleteUrlDeployments,
1612+ activeSurgeDeployments,
1613+ rapidResponsePersonnel,
1614+ emergencyResponseUnit,
1615+ updateERUReadinessForm,
15581616} ;
0 commit comments