Added target and terminal support in Dashboard
[src/xds/xds-agent.git] / webapp / src / app / pages / pages-routing.module.ts
index df28160..655dea2 100644 (file)
@@ -1,6 +1,6 @@
 /**
 * @license
-* Copyright (C) 2017 "IoT.bzh"
+* Copyright (C) 2017-2018 "IoT.bzh"
 * Author Sebastien Douheret <sebastien@iot.bzh>
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
@@ -24,6 +24,8 @@ import { DashboardComponent } from './dashboard/dashboard.component';
 import { ProjectsComponent } from './projects/projects.component';
 import { SdksComponent } from './sdks/sdks.component';
 import { SdkManagementComponent } from './sdks/sdk-management/sdk-management.component';
+import { TargetsComponent } from './targets/targets.component';
+import { TerminalsComponent } from './targets/terminals/terminals.component';
 import { BuildComponent } from './build/build.component';
 
 const routes: Routes = [{
@@ -44,6 +46,12 @@ const routes: Routes = [{
   }, {
     path: 'build',
     component: BuildComponent,
+  }, {
+    path: 'targets/list',
+    component: TargetsComponent,
+  }, {
+    path: 'targets/term',
+    component: TerminalsComponent,
   }, {
     path: 'config',
     loadChildren: './config/config.module#ConfigModule',