X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-frontend%2Fsrc%2Fapp%2Fcontrolpanel-routing.module.ts;h=366ef9f94c6647aa92f1dfa12d314f66241870db;hb=4f2e3d8dcdebd4b60d80b26a200588be40bed131;hp=23665bc32078029db355b607c7b53c5abdb8b85c;hpb=f507d92d55ee77fad16cc024ea95c869e0d5dc32;p=portal%2Fnonrtric-controlpanel.git diff --git a/webapp-frontend/src/app/controlpanel-routing.module.ts b/webapp-frontend/src/app/controlpanel-routing.module.ts index 23665bc..366ef9f 100644 --- a/webapp-frontend/src/app/controlpanel-routing.module.ts +++ b/webapp-frontend/src/app/controlpanel-routing.module.ts @@ -23,11 +23,13 @@ import { CommonModule } from '@angular/common'; import { Routes, RouterModule } from '@angular/router'; import { MainComponent } from './main/main.component'; import { PolicyControlComponent } from './policy-control/policy-control.component'; +import { EICoordinatorComponent } from './ei-coordinator/ei-coordinator.component'; const routes: Routes = [ { path: '', component: MainComponent }, - { path: 'policy', component: PolicyControlComponent } + { path: 'policy', component: PolicyControlComponent }, + { path: 'ei-coordinator', component: EICoordinatorComponent } ]; @NgModule({