3 * Copyright (C) 2017-2018 "IoT.bzh"
4 * Author Sebastien Douheret <sebastien@iot.bzh>
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
10 * http://www.apache.org/licenses/LICENSE-2.0
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
19 import { RouterModule, Routes } from '@angular/router';
20 import { NgModule } from '@angular/core';
22 import { PagesComponent } from './pages.component';
23 import { DashboardComponent } from './dashboard/dashboard.component';
24 import { ProjectsComponent } from './projects/projects.component';
25 import { SdksComponent } from './sdks/sdks.component';
26 import { SdkManagementComponent } from './sdks/sdk-management/sdk-management.component';
27 import { TargetsComponent } from './targets/targets.component';
28 import { TerminalsComponent } from './targets/terminals/terminals.component';
29 import { BuildComponent } from './build/build.component';
30 import { SupervisionComponent } from './supervision/supervision.component';
31 import { SupervisionConfigComponent } from './supervision/supervision-config.component';
33 const routes: Routes = [{
35 component: PagesComponent,
38 component: DashboardComponent,
41 component: ProjectsComponent,
44 component: SdksComponent,
46 path: 'sdks/management',
47 component: SdkManagementComponent,
50 component: BuildComponent,
53 component: TargetsComponent,
56 component: TerminalsComponent,
58 path: 'supervision/config',
59 component: SupervisionConfigComponent,
61 path: 'supervision/graph',
62 component: SupervisionComponent,
65 loadChildren: './config/config.module#ConfigModule',
69 redirectTo: 'dashboard',
75 imports: [RouterModule.forChild(routes)],
76 exports: [RouterModule],
78 export class PagesRoutingModule {