]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/admin/local/admin-local.module.ts
LP2042879 Shelving Location Groups Admin accessibility
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / admin / local / admin-local.module.ts
1 import {NgModule} from '@angular/core';
2 import {TreeModule} from '@eg/share/tree/tree.module';
3 import {StaffCommonModule} from '@eg/staff/common.module';
4 import {AdminLocalRoutingModule} from './routing.module';
5 import {AdminCommonModule} from '@eg/staff/admin/common.module';
6 import {AdminLocalSplashComponent} from './admin-local-splash.component';
7 import {AddressAlertComponent} from './address-alert.component';
8 import {AdminCarouselComponent} from './admin-carousel.component';
9 import {ClonePortalEntriesDialogComponent} from './staff_portal_page/clone-portal-entries-dialog.component';
10 import {AdminStaffPortalPageComponent} from './staff_portal_page/staff-portal-page.component';
11 import {StandingPenaltyComponent} from './standing-penalty.component';
12
13 @NgModule({
14     declarations: [
15         AdminLocalSplashComponent,
16         AddressAlertComponent,
17         AdminCarouselComponent,
18         StandingPenaltyComponent,
19         ClonePortalEntriesDialogComponent,
20         AdminStaffPortalPageComponent
21     ],
22     imports: [
23         AdminCommonModule,
24         AdminLocalRoutingModule,
25         TreeModule
26     ],
27     exports: [
28     ],
29     providers: [
30     ]
31 })
32
33 export class AdminLocalModule {
34 }
35
36