]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs.module.ts
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cephfs / cephfs.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { FormsModule, ReactiveFormsModule } from '@angular/forms';
4
5 import { TreeModule } from '@circlon/angular-tree-component';
6 import { NgbNavModule, NgbTooltipModule, NgbTypeaheadModule } from '@ng-bootstrap/ng-bootstrap';
7 import { ChartsModule } from 'ng2-charts';
8
9 import { AppRoutingModule } from '~/app/app-routing.module';
10 import { SharedModule } from '~/app/shared/shared.module';
11 import { CephfsChartComponent } from './cephfs-chart/cephfs-chart.component';
12 import { CephfsClientsComponent } from './cephfs-clients/cephfs-clients.component';
13 import { CephfsDetailComponent } from './cephfs-detail/cephfs-detail.component';
14 import { CephfsDirectoriesComponent } from './cephfs-directories/cephfs-directories.component';
15 import { CephfsVolumeFormComponent } from './cephfs-form/cephfs-form.component';
16 import { CephfsListComponent } from './cephfs-list/cephfs-list.component';
17 import { CephfsTabsComponent } from './cephfs-tabs/cephfs-tabs.component';
18 import { CephfsSubvolumeListComponent } from './cephfs-subvolume-list/cephfs-subvolume-list.component';
19 import { CephfsSubvolumeFormComponent } from './cephfs-subvolume-form/cephfs-subvolume-form.component';
20 import { CephfsSubvolumeGroupComponent } from './cephfs-subvolume-group/cephfs-subvolume-group.component';
21 import { CephfsSubvolumegroupFormComponent } from './cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component';
22
23 @NgModule({
24 imports: [
25 CommonModule,
26 SharedModule,
27 AppRoutingModule,
28 ChartsModule,
29 TreeModule,
30 NgbNavModule,
31 FormsModule,
32 ReactiveFormsModule,
33 NgbTypeaheadModule,
34 NgbTooltipModule
35 ],
36 declarations: [
37 CephfsDetailComponent,
38 CephfsClientsComponent,
39 CephfsChartComponent,
40 CephfsListComponent,
41 CephfsTabsComponent,
42 CephfsVolumeFormComponent,
43 CephfsDirectoriesComponent,
44 CephfsSubvolumeListComponent,
45 CephfsSubvolumeFormComponent,
46 CephfsDirectoriesComponent,
47 CephfsSubvolumeGroupComponent,
48 CephfsSubvolumegroupFormComponent
49 ]
50 })
51 export class CephfsModule {}