@@ -728,6 +728,50 @@ const accountMyFormsThreeW = customWrapRoute({
728728 } ,
729729} ) ;
730730
731+ const accountMyFormsEap = customWrapRoute ( {
732+ parent : accountMyFormsLayout ,
733+ path : 'eap-applications' ,
734+ component : {
735+ render : ( ) => import ( '#views/EapApplications' ) ,
736+ props : { } ,
737+ } ,
738+ context : {
739+ title : 'Account - EAP Applications' ,
740+ visibility : 'is-authenticated' ,
741+ permissions : ( { isGuestUser } ) => ! isGuestUser ,
742+ } ,
743+ } ) ;
744+
745+ const eapFullForm = customWrapRoute ( {
746+ parent : rootLayout ,
747+ path : 'eap-full-form' ,
748+ component : {
749+ render : ( ) => import ( '#views/EapFullForm' ) ,
750+ props : { } ,
751+ } ,
752+ wrapperComponent : Auth ,
753+ context : {
754+ title : 'EAP Full Forms' ,
755+ visibility : 'is-authenticated' ,
756+ permissions : ( { isGuestUser } ) => ! isGuestUser ,
757+ } ,
758+ } ) ;
759+
760+ const simplifiedEapForm = customWrapRoute ( {
761+ parent : rootLayout ,
762+ path : 'simplified-eap-form' ,
763+ component : {
764+ render : ( ) => import ( '#views/SimplifiedEapForm' ) ,
765+ props : { } ,
766+ } ,
767+ wrapperComponent : Auth ,
768+ context : {
769+ title : 'Simplified EAP Forms' ,
770+ visibility : 'is-authenticated' ,
771+ permissions : ( { isGuestUser } ) => ! isGuestUser ,
772+ } ,
773+ } ) ;
774+
731775const accountNotifications = customWrapRoute ( {
732776 parent : accountLayout ,
733777 path : 'notifications' ,
@@ -1344,6 +1388,7 @@ const wrappedRoutes = {
13441388 accountMyFormsPer,
13451389 accountMyFormsDref,
13461390 accountMyFormsThreeW,
1391+ accountMyFormsEap,
13471392 resources,
13481393 search,
13491394 allThreeWProject,
@@ -1381,6 +1426,8 @@ const wrappedRoutes = {
13811426 operationalLearning,
13821427 montandonLandingPage,
13831428 eapDevelopmentRegistration,
1429+ eapFullForm,
1430+ simplifiedEapForm,
13841431 ...regionRoutes ,
13851432 ...countryRoutes ,
13861433 ...surgeRoutes ,
0 commit comments