From 38c0c21a969e621c725245ce91c78e77076c5ce7 Mon Sep 17 00:00:00 2001 From: Sebastien Douheret Date: Mon, 20 Nov 2017 17:23:04 +0100 Subject: New dashboard look & feel Dashboard is a fork of ngx-admin release v2.0.1 (sha be7649a9a2da835) Signed-off-by: Sebastien Douheret --- webapp/src/app/pages/pages-routing.module.ts | 41 ++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 webapp/src/app/pages/pages-routing.module.ts (limited to 'webapp/src/app/pages/pages-routing.module.ts') diff --git a/webapp/src/app/pages/pages-routing.module.ts b/webapp/src/app/pages/pages-routing.module.ts new file mode 100644 index 0000000..11834e8 --- /dev/null +++ b/webapp/src/app/pages/pages-routing.module.ts @@ -0,0 +1,41 @@ +import { RouterModule, Routes } from '@angular/router'; +import { NgModule } from '@angular/core'; + +import { PagesComponent } from './pages.component'; +import { DashboardComponent } from './dashboard/dashboard.component'; +import { ProjectsComponent } from './projects/projects.component'; +import { SdksComponent } from './sdks/sdks.component'; +import { BuildComponent } from './build/build.component'; + +const routes: Routes = [{ + path: '', + component: PagesComponent, + children: [{ + path: 'dashboard', + component: DashboardComponent, + }, { + path: 'projects', + component: ProjectsComponent, + }, { + path: 'sdks', + component: SdksComponent, + }, { + path: 'build', + component: BuildComponent, + }, { + path: 'config', + loadChildren: './config/config.module#ConfigModule', + }, + { + path: '', + redirectTo: 'dashboard', + pathMatch: 'full', + }], +}]; + +@NgModule({ + imports: [RouterModule.forChild(routes)], + exports: [RouterModule], +}) +export class PagesRoutingModule { +} -- cgit 1.2.3-korg