This commit is contained in:
tiago.kayaya
2021-04-08 10:07:14 +01:00
parent 4bb1e8add8
commit 57c830ed88
5 changed files with 34 additions and 13 deletions
+13
View File
@@ -48,6 +48,15 @@ const routes: Routes = [
},
]
},
{
path: 'attendees-modal',
children: [
{
path:'',
loadChildren: ()=> import('../shared/event/attendee-modal/attendee-modal.module').then(m => m.AttendeeModalPageModule)
},
]
},
{
path: 'login',
children: [
@@ -103,6 +112,10 @@ const routes: Routes = [
{
path:'events/:eventId/:caller',
loadChildren: ()=> import('../pages/events/event-detail/event-detail.module').then(m => m.EventDetailPageModule),
},
{
path:'expediente-task-modal',
loadChildren: ()=> import('../pages/gabinete-digital/expediente/expedient-task-modal/expedient-task-modal.module').then(m => m.ExpedientTaskModalPageModule),
}
]
},