]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs.module.ts
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cephfs / cephfs.module.ts
index c44dd6e818725d7c6a644c7b842b74169cc36b96..4601d5b093eafca3ffcbf2436529f57209c1faf0 100644 (file)
@@ -1,7 +1,8 @@
 import { CommonModule } from '@angular/common';
 import { NgModule } from '@angular/core';
 
-import { ChartsModule } from 'ng2-charts/ng2-charts';
+import { TreeModule } from 'angular-tree-component';
+import { ChartsModule } from 'ng2-charts';
 import { ProgressbarModule } from 'ngx-bootstrap/progressbar';
 import { TabsModule } from 'ngx-bootstrap/tabs';
 
@@ -10,7 +11,9 @@ import { SharedModule } from '../../shared/shared.module';
 import { CephfsChartComponent } from './cephfs-chart/cephfs-chart.component';
 import { CephfsClientsComponent } from './cephfs-clients/cephfs-clients.component';
 import { CephfsDetailComponent } from './cephfs-detail/cephfs-detail.component';
+import { CephfsDirectoriesComponent } from './cephfs-directories/cephfs-directories.component';
 import { CephfsListComponent } from './cephfs-list/cephfs-list.component';
+import { CephfsTabsComponent } from './cephfs-tabs/cephfs-tabs.component';
 
 @NgModule({
   imports: [
@@ -18,6 +21,7 @@ import { CephfsListComponent } from './cephfs-list/cephfs-list.component';
     SharedModule,
     AppRoutingModule,
     ChartsModule,
+    TreeModule.forRoot(),
     ProgressbarModule.forRoot(),
     TabsModule.forRoot()
   ],
@@ -25,7 +29,9 @@ import { CephfsListComponent } from './cephfs-list/cephfs-list.component';
     CephfsDetailComponent,
     CephfsClientsComponent,
     CephfsChartComponent,
-    CephfsListComponent
+    CephfsListComponent,
+    CephfsTabsComponent,
+    CephfsDirectoriesComponent
   ]
 })
 export class CephfsModule {}