]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/routing.module.ts
LP2045292 Color contrast for AngularJS patron bills
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / cat / routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3 import {BibByIdentComponent} from './bib-by-ident.component';
4
5 const routes: Routes = [
6     { path: 'vandelay',
7         loadChildren: () =>
8             import('./vandelay/vandelay.module').then(m => m.VandelayModule)
9     }, {
10         path: 'authority',
11         loadChildren: () =>
12             import('./authority/authority.module').then(m => m.AuthorityModule)
13     }, {
14         path: 'linkchecker',
15         loadChildren: () =>
16             import('./linkchecker/linkchecker.module').then(m => m.LinkCheckerModule)
17     }, {
18         path: 'marcbatch',
19         loadChildren: () =>
20             import('./marcbatch/marcbatch.module').then(m => m.MarcBatchModule)
21     }, {
22         path: 'item',
23         loadChildren: () => import('./item/item.module').then(m => m.ItemModule)
24     }, {
25         path: 'volcopy',
26         loadChildren: () =>
27             import('./volcopy/volcopy.module').then(m => m.VolCopyModule)
28     }, {
29         path: 'bib-from/:identType',
30         component: BibByIdentComponent
31     }
32 ];
33
34 @NgModule({
35     imports: [RouterModule.forChild(routes)],
36     exports: [RouterModule]
37 })
38
39 export class CatRoutingModule {}