Migration to AGL gerrit (update go import)
[src/xds/xds-agent.git] / webapp / src / app / pages / pages-routing.module.ts
1 /**
2 * @license
3 * Copyright (C) 2017-2018 "IoT.bzh"
4 * Author Sebastien Douheret <sebastien@iot.bzh>
5 *
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
9 *
10 *   http://www.apache.org/licenses/LICENSE-2.0
11 *
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.
17 */
18
19 import { RouterModule, Routes } from '@angular/router';
20 import { NgModule } from '@angular/core';
21
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 { BuildComponent } from './build/build.component';
28
29 const routes: Routes = [{
30   path: '',
31   component: PagesComponent,
32   children: [{
33     path: 'dashboard',
34     component: DashboardComponent,
35   }, {
36     path: 'projects',
37     component: ProjectsComponent,
38   }, {
39     path: 'sdks',
40     component: SdksComponent,
41   }, {
42     path: 'sdks/management',
43     component: SdkManagementComponent,
44   }, {
45     path: 'build',
46     component: BuildComponent,
47   }, {
48     path: 'config',
49     loadChildren: './config/config.module#ConfigModule',
50   },
51   {
52     path: '',
53     redirectTo: 'dashboard',
54     pathMatch: 'full',
55   }],
56 }];
57
58 @NgModule({
59   imports: [RouterModule.forChild(routes)],
60   exports: [RouterModule],
61 })
62 export class PagesRoutingModule {
63 }