add inativity page

This commit is contained in:
Peter Maquiran
2021-08-27 09:48:51 +01:00
parent bf89001177
commit 6aec4a1d5f
10 changed files with 89 additions and 139 deletions
+10 -11
View File
@@ -368,20 +368,19 @@ const routes: Routes = [
],
},
{
path: 'inactivity',
children: [
{
path:'',
loadChildren: ()=> import('../pages/inactivity/inactivity.module').then(m => m.InactivityPageModule)
},
],
},
],
canActivate: [AuthGuard]
},
{
path: 'inactivity',
children: [
{
path:'',
loadChildren: ()=> import('../pages/inactivity/inactivity.module').then(m => m.InactivityPageModule)
},
],
}
},
];
@NgModule({