]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/core.module.ts
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / core.module.ts
index 8d3d67c652071a1ff55794591d5290ae50b816f8..c220fa6dedf1690925709f2f84dd1ab0da0a6f92 100644 (file)
@@ -1,13 +1,26 @@
 import { CommonModule } from '@angular/common';
 import { NgModule } from '@angular/core';
+import { RouterModule } from '@angular/router';
 
+import { BlockUIModule } from 'ng-block-ui';
+
+import { SharedModule } from '../shared/shared.module';
 import { ForbiddenComponent } from './forbidden/forbidden.component';
+import { BlankLayoutComponent } from './layouts/blank-layout/blank-layout.component';
+import { LoginLayoutComponent } from './layouts/login-layout/login-layout.component';
+import { WorkbenchLayoutComponent } from './layouts/workbench-layout/workbench-layout.component';
 import { NavigationModule } from './navigation/navigation.module';
 import { NotFoundComponent } from './not-found/not-found.component';
 
 @NgModule({
-  imports: [CommonModule, NavigationModule],
+  imports: [BlockUIModule.forRoot(), CommonModule, NavigationModule, RouterModule, SharedModule],
   exports: [NavigationModule],
-  declarations: [NotFoundComponent, ForbiddenComponent]
+  declarations: [
+    NotFoundComponent,
+    ForbiddenComponent,
+    WorkbenchLayoutComponent,
+    BlankLayoutComponent,
+    LoginLayoutComponent
+  ]
 })
 export class CoreModule {}