aboutsummaryrefslogtreecommitdiffstats
path: root/webapp/src/app/pages/pages-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/src/app/pages/pages-routing.module.ts')
-rw-r--r--webapp/src/app/pages/pages-routing.module.ts41
1 files changed, 41 insertions, 0 deletions
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 {
+}