Added copyright headers
[src/xds/xds-agent.git] / webapp / src / app / pages / pages-routing.module.ts
1 /**
2 * @license
3 * Copyright (C) 2017 "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 { BuildComponent } from './build/build.component';
27
28 const routes: Routes = [{
29   path: '',
30   component: PagesComponent,
31   children: [{
32     path: 'dashboard',
33     component: DashboardComponent,
34   }, {
35     path: 'projects',
36     component: ProjectsComponent,
37   }, {
38     path: 'sdks',
39     component: SdksComponent,
40   }, {
41     path: 'build',
42     component: BuildComponent,
43   }, {
44     path: 'config',
45     loadChildren: './config/config.module#ConfigModule',
46   },
47   {
48     path: '',
49     redirectTo: 'dashboard',
50     pathMatch: 'full',
51   }],
52 }];
53
54 @NgModule({
55   imports: [RouterModule.forChild(routes)],
56   exports: [RouterModule],
57 })
58 export class PagesRoutingModule {
59 }