]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/dashboard/dashboard.module.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / dashboard / dashboard.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { RouterModule } from '@angular/router';
4
5 import { NgbNavModule, NgbPopoverModule } from '@ng-bootstrap/ng-bootstrap';
6 import { ChartsModule } from 'ng2-charts';
7
8 import { SharedModule } from '~/app/shared/shared.module';
9 import { CephSharedModule } from '../shared/ceph-shared.module';
10 import { DashboardComponent } from './dashboard/dashboard.component';
11 import { HealthPieComponent } from './health-pie/health-pie.component';
12 import { HealthComponent } from './health/health.component';
13 import { InfoCardComponent } from './info-card/info-card.component';
14 import { InfoGroupComponent } from './info-group/info-group.component';
15 import { MdsSummaryPipe } from './mds-summary.pipe';
16 import { MgrSummaryPipe } from './mgr-summary.pipe';
17 import { MonSummaryPipe } from './mon-summary.pipe';
18 import { OsdSummaryPipe } from './osd-summary.pipe';
19
20 @NgModule({
21 imports: [
22 CephSharedModule,
23 CommonModule,
24 NgbNavModule,
25 SharedModule,
26 ChartsModule,
27 RouterModule,
28 NgbPopoverModule
29 ],
30
31 declarations: [
32 HealthComponent,
33 DashboardComponent,
34 MonSummaryPipe,
35 OsdSummaryPipe,
36 MgrSummaryPipe,
37 MdsSummaryPipe,
38 HealthPieComponent,
39 InfoCardComponent,
40 InfoGroupComponent
41 ]
42 })
43 export class DashboardModule {}