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