mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
835b0169b6
Edit event
38 lines
1.1 KiB
TypeScript
38 lines
1.1 KiB
TypeScript
import { NgModule } from '@angular/core';
|
|
import { Routes, RouterModule } from '@angular/router';
|
|
|
|
import { EventsPage } from './events.page';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: EventsPage
|
|
},
|
|
{
|
|
path: 'event-detail',
|
|
loadChildren: () => import('./event-detail/event-detail.module').then( m => m.EventDetailPageModule)
|
|
},
|
|
{
|
|
path: 'attachments',
|
|
loadChildren: () => import('./attachments/attachments.module').then( m => m.AttachmentsPageModule)
|
|
},
|
|
{
|
|
path: 'attendees',
|
|
loadChildren: () => import('./attendees/attendees.module').then( m => m.AttendeesPageModule)
|
|
},
|
|
{
|
|
path: 'attendee-modal',
|
|
loadChildren: () => import('./attendee-modal/attendee-modal.module').then( m => m.AttendeeModalPageModule)
|
|
},
|
|
{
|
|
path: 'event-detail-modal',
|
|
loadChildren: () => import('./event-detail-modal/event-detail-modal.module').then( m => m.EventDetailModalPageModule)
|
|
}
|
|
|
|
];
|
|
|
|
@NgModule({
|
|
imports: [RouterModule.forChild(routes)],
|
|
exports: [RouterModule],
|
|
})
|
|
export class EventsPageRoutingModule {}
|