]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts
lp1852321 Angular Shelving Location Groups UI Port
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / routing.module.ts
1 import {NgModule} from '@angular/core';
2 import {RouterModule, Routes} from '@angular/router';
3 import {AdminLocalSplashComponent} from './admin-local-splash.component';
4 import {BasicAdminPageComponent} from '@eg/staff/admin/basic-admin-page.component';
5 import {AddressAlertComponent} from './address-alert.component';
6 import {AdminCarouselComponent} from './admin-carousel.component';
7 import {StandingPenaltyComponent} from './standing-penalty.component';
8 import {CourseTermMapComponent} from './course-reserves/course-term-map.component';
9
10 const routes: Routes = [{
11     path: 'splash',
12     component: AdminLocalSplashComponent
13 }, {
14     path: 'config/hold_matrix_matchpoint',
15     component: BasicAdminPageComponent,
16     data: [{schema: 'config', table: 'hold_matrix_matchpoint', disableOrgFilter: true}]
17 }, {
18     path: 'actor/address_alert',
19     component: AddressAlertComponent
20 }, {
21     path: 'asset/copy_location',
22     component: BasicAdminPageComponent,
23     data: [{
24         schema: 'asset',
25         table: 'copy_location',
26         fieldOrder: 'owning_lib,name,opac_visible,circulate,holdable,hold_verify,checkin_alert,deleted,label_prefix,label_suffix,url,id'}]
27 }, {
28     path: 'asset/shelving_location_groups',
29     loadChildren: '@eg/staff/admin/local/shelving_location_groups/shelving_location_groups.module#ShelvingLocationGroupsModule'
30 }, {
31     path: 'container/carousel',
32     component: AdminCarouselComponent
33 }, {
34     path: 'asset/course_list',
35     loadChildren: () =>
36       import('./course-reserves/course-reserves.module').then(m => m.CourseReservesModule)
37 }, {
38     path: 'asset/course_module_term_course_map',
39     component: CourseTermMapComponent
40 }, {
41     path: 'config/circ_limit_set',
42     loadChildren: () =>
43       import('./circ_limit_set/circ_limit_set.module').then(m => m.CircLimitSetModule)
44 }, {
45     path: 'config/standing_penalty',
46     component: StandingPenaltyComponent
47 }, {
48     path: 'action/survey',
49     loadChildren: () =>
50       import('./survey/survey.module').then(m => m.SurveyModule)
51 }, {
52     path: ':schema/:table',
53     component: BasicAdminPageComponent
54 }];
55
56 @NgModule({
57   imports: [RouterModule.forChild(routes)],
58   exports: [RouterModule]
59 })
60
61 export class AdminLocalRoutingModule {}