NG-UI Added support for the OSM Repository
* Added a list to show the repo added.
* Form to add the repo path with the type.
Change-Id: I77ddbf6ef4c7f02abd2e5bc455b3a21e04e5b20d
Signed-off-by: Barath Kumar R <barath.r@tataelxsi.co.in>
diff --git a/src/app/approutes.module.ts b/src/app/approutes.module.ts
index e2f863c..6145aae 100644
--- a/src/app/approutes.module.ts
+++ b/src/app/approutes.module.ts
@@ -104,6 +104,13 @@
loadChildren: async (): Promise<any> => import('./k8s/K8sModule')
.then((m: typeof import('./k8s/K8sModule')) => m.K8sModule),
canActivate: [AuthGuardService]
+ },
+ {
+ path: 'repos',
+ // tslint:disable-next-line: no-any
+ loadChildren: async (): Promise<any> => import('./osm-repositories/OsmRepositoriesModule')
+ .then((m: typeof import('./osm-repositories/OsmRepositoriesModule')) => m.OsmRepositoriesModule),
+ canActivate: [AuthGuardService]
}
]
},