]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/routing.module.ts
LP1908763 Survey column sorting broken
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3
4 const routes: Routes = [{
5   path: '',
6   children : [{
7     path: 'workstation',
8     loadChildren: () =>
9       import('./workstation/routing.module').then(m => m.AdminWsRoutingModule)
10   }, {
11     path: 'server',
12     loadChildren: () =>
13       import('./server/admin-server.module').then(m => m.AdminServerModule)
14   }, {
15     path: 'local',
16     loadChildren: () =>
17       import('./local/admin-local.module').then(m => m.AdminLocalModule)
18   }, {
19     path: 'acq',
20     loadChildren: () =>
21       import('./acq/admin-acq.module').then(m => m.AdminAcqModule)
22   }, {
23     path: 'booking',
24     loadChildren: () =>
25       import('./booking/admin-booking.module').then(m => m.AdminBookingModule)
26   }]
27 }];
28
29 @NgModule({
30   imports: [RouterModule.forChild(routes)],
31   exports: [RouterModule]
32 })
33
34 export class AdminRoutingModule {}