]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/cat/routing.module.ts
67cf5c6fd374f616bbad66abc7d44693e102a115
[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: 'marcbatch',
15     loadChildren: () =>
16       import('./marcbatch/marcbatch.module').then(m => m.MarcBatchModule)
17   }, {
18     path: 'bib-from/:identType',
19     component: BibByIdentComponent
20   }
21 ];
22
23 @NgModule({
24   imports: [RouterModule.forChild(routes)],
25   exports: [RouterModule]
26 })
27
28 export class CatRoutingModule {}