X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=blobdiff_plain;f=webapp%2Fsrc%2Fapp%2Fpages%2Fpages-routing.module.ts;h=ae2ef4a2aaec3ed7628c8c6fd6bd42eaa3948619;hb=135754a4b3ca915f717e79d8f3f4eb29c04195b3;hp=7eeccd0e7c005dabf948c832ec82ba6b3b32ec10;hpb=a2cc38902ff7528870822110c4f04329a3918564;p=src%2Fxds%2Fxds-agent.git diff --git a/webapp/src/app/pages/pages-routing.module.ts b/webapp/src/app/pages/pages-routing.module.ts index 7eeccd0..ae2ef4a 100644 --- a/webapp/src/app/pages/pages-routing.module.ts +++ b/webapp/src/app/pages/pages-routing.module.ts @@ -24,7 +24,11 @@ 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'; +import { SupervisionComponent } from './supervision/supervision.component'; +import { SupervisionConfigComponent } from './supervision/supervision-config.component'; const routes: Routes = [{ path: '', @@ -44,6 +48,18 @@ const routes: Routes = [{ }, { path: 'build', component: BuildComponent, + }, { + path: 'targets/list', + component: TargetsComponent, + }, { + path: 'targets/term', + component: TerminalsComponent, + }, { + path: 'supervision/config', + component: SupervisionConfigComponent, + }, { + path: 'supervision/graph', + component: SupervisionComponent, }, { path: 'config', loadChildren: './config/config.module#ConfigModule',