Add multi-layer RIC instance selector
[portal/ric-dashboard.git] / dashboard / webapp-frontend / src / app / rd-routing.module.ts
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 AT&T Intellectual Property
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 import { NgModule } from '@angular/core';
21 import { CommonModule } from '@angular/common';
22 import { Routes, RouterModule } from '@angular/router';
23
24 import { AcXappComponent } from './ac-xapp/ac-xapp.component';
25 import { CatalogComponent } from './catalog/catalog.component';
26 import { ControlComponent } from './control/control.component';
27 import { MainComponent } from './main/main.component';
28 import { PlatformComponent } from './platform/platform.component';
29 import { StatsComponent } from './stats/stats.component';
30 import { UserComponent } from './user/user.component';
31
32 const routes: Routes = [
33     {path: '', component: MainComponent},
34     {path: 'catalog', component: CatalogComponent},
35     {path: 'control', component: ControlComponent},
36     {path: 'ac', component: AcXappComponent},
37     {path: 'stats', component: StatsComponent},
38     {path: 'platform', component: PlatformComponent},
39     {path: 'user', component: UserComponent},
40 ];
41
42 @NgModule({
43   imports: [
44       CommonModule,
45       RouterModule.forRoot(routes)],
46   exports: [
47       RouterModule
48     ],
49     declarations: []
50 })
51
52 export class RdRoutingModule { }