]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/core/navigation/navigation.module.ts
update source to Ceph Pacific 16.2.2
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / core / navigation / navigation.module.ts
1 import { CommonModule } from '@angular/common';
2 import { NgModule } from '@angular/core';
3 import { RouterModule } from '@angular/router';
4
5 import { NgbCollapseModule, NgbDropdownModule } from '@ng-bootstrap/ng-bootstrap';
6 import { SimplebarAngularModule } from 'simplebar-angular';
7
8 import { AppRoutingModule } from '~/app/app-routing.module';
9 import { SharedModule } from '~/app/shared/shared.module';
10 import { AuthModule } from '../auth/auth.module';
11 import { AboutComponent } from './about/about.component';
12 import { AdministrationComponent } from './administration/administration.component';
13 import { BreadcrumbsComponent } from './breadcrumbs/breadcrumbs.component';
14 import { DashboardHelpComponent } from './dashboard-help/dashboard-help.component';
15 import { IdentityComponent } from './identity/identity.component';
16 import { NavigationComponent } from './navigation/navigation.component';
17 import { NotificationsComponent } from './notifications/notifications.component';
18
19 @NgModule({
20 imports: [
21 CommonModule,
22 AuthModule,
23 NgbCollapseModule,
24 NgbDropdownModule,
25 AppRoutingModule,
26 SharedModule,
27 SimplebarAngularModule,
28 RouterModule
29 ],
30 declarations: [
31 AboutComponent,
32 BreadcrumbsComponent,
33 NavigationComponent,
34 NotificationsComponent,
35 DashboardHelpComponent,
36 AdministrationComponent,
37 IdentityComponent
38 ],
39 exports: [NavigationComponent, BreadcrumbsComponent]
40 })
41 export class NavigationModule {}