]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts
LP 1857351: set basic admin interface field order using route
[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: 'container/carousel',
29     component: AdminCarouselComponent
30 }, {
31     path: 'asset/course_list',
32     loadChildren: () =>
33       import('./course-reserves/course-reserves.module').then(m => m.CourseReservesModule)
34 }, {
35     path: 'asset/course_module_term_course_map',
36     component: CourseTermMapComponent
37 }, {
38     path: 'config/standing_penalty',
39     component: StandingPenaltyComponent
40 }, {
41     path: 'action/survey',
42     loadChildren: () =>
43       import('./survey/survey.module').then(m => m.SurveyModule)
44 }, {
45     path: ':schema/:table',
46     component: BasicAdminPageComponent
47 }];
48
49 @NgModule({
50   imports: [RouterModule.forChild(routes)],
51   exports: [RouterModule]
52 })
53
54 export class AdminLocalRoutingModule {}