aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/pages/pages.module.ts
blob: 3f3be8e257319db0162e1f405c484460c548d361 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
import { NgModule } from '@angular/core';
import { ToasterModule } from 'angular2-toaster';

import { PagesComponent } from './pages.component';
import { AboutModule } from './about/about.module';
import { DashboardModule } from './dashboard/dashboard.module';
import { BuildModule } from './build/build.module';
import { ProjectsModule } from './projects/projects.module';
import { SdksModule } from './sdks/sdks.module';
import { PagesRoutingModule } from './pages-routing.module';
import { NotificationsComponent } from './notifications/notifications.component';
import { ThemeModule } from '../@theme/theme.module';

const PAGES_COMPONENTS = [
  PagesComponent,
  NotificationsComponent,
];

@NgModule({
  imports: [
    PagesRoutingModule,
    ThemeModule,
    AboutModule,
    BuildModule,
    DashboardModule,
    ProjectsModule,
    SdksModule,
    ToasterModule,
  ],
  declarations: [
    ...PAGES_COMPONENTS,
  ],
})
export class PagesModule {
}