summaryrefslogtreecommitdiffstats
path: root/usecaseui-portal/src/app/views/maas/maas-routing.module.ts
diff options
context:
space:
mode:
Diffstat (limited to 'usecaseui-portal/src/app/views/maas/maas-routing.module.ts')
-rw-r--r--usecaseui-portal/src/app/views/maas/maas-routing.module.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/usecaseui-portal/src/app/views/maas/maas-routing.module.ts b/usecaseui-portal/src/app/views/maas/maas-routing.module.ts
new file mode 100644
index 00000000..d71e6896
--- /dev/null
+++ b/usecaseui-portal/src/app/views/maas/maas-routing.module.ts
@@ -0,0 +1,17 @@
+import { NgModule } from '@angular/core';
+import { RouterModule, Routes } from '@angular/router';
+import { ApplicationManagementComponent } from './build/application-management.component';
+import { UseApplicationComponent } from './use/use-application.component';
+import { KnowledgeBaseManagementComponent } from './knowledge-base-management/knowledge-base-management.component';
+
+const routes: Routes = [
+ { path: 'build', component: ApplicationManagementComponent },
+ { path: 'use', component: UseApplicationComponent },
+ { path: 'knowledge-base-management', component: KnowledgeBaseManagementComponent },
+];
+
+@NgModule({
+ imports: [RouterModule.forChild(routes)],
+ exports: [RouterModule]
+})
+export class MaasRoutingModule { }