diff options
author | Dan Timoney <dtimoney@att.com> | 2019-11-19 21:21:03 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-11-19 21:21:03 +0000 |
commit | f0b747065e11ee5cc1be4bad2983a557af9c7969 (patch) | |
tree | 325f2b9c7adb2b082e30c1fee9cf10f8e09b596f /cds-ui/client-frankfurt/src/app/app-routing.module.ts | |
parent | 2783ded8664505cc0bbfd254fc2a96c5830b66a0 (diff) | |
parent | 32a1d4fac56ff29b0e50fa88bdf88047c51bc0be (diff) |
Merge "add main module and hrml of designer component in new cds ui"
Diffstat (limited to 'cds-ui/client-frankfurt/src/app/app-routing.module.ts')
-rw-r--r-- | cds-ui/client-frankfurt/src/app/app-routing.module.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cds-ui/client-frankfurt/src/app/app-routing.module.ts b/cds-ui/client-frankfurt/src/app/app-routing.module.ts index b42468b9f..e55393b03 100644 --- a/cds-ui/client-frankfurt/src/app/app-routing.module.ts +++ b/cds-ui/client-frankfurt/src/app/app-routing.module.ts @@ -22,6 +22,14 @@ limitations under the License. import {NgModule} from '@angular/core'; import {Routes, RouterModule} from '@angular/router'; +const routes: Routes = [ + {path: 'packages', loadChildren: './modules/feature-modules/packages/packages.module#PackagesModule'}, + { + path: '', + redirectTo: 'packages', + pathMatch: 'full' + }, +]; @NgModule({ imports: [RouterModule.forRoot(routes)], |