From ce9bc0c6ad58e4117d26a204ffc56bbcdb7fe916 Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Tue, 14 Mar 2017 19:41:20 +0000
Subject: [PATCH] #3527 fix - Changes on pack list and routes

---
 securis/src/main/webapp/src/app/app.routes.ts |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)

diff --git a/securis/src/main/webapp/src/app/app.routes.ts b/securis/src/main/webapp/src/app/app.routes.ts
index 2989b5a..e3f5054 100644
--- a/securis/src/main/webapp/src/app/app.routes.ts
+++ b/securis/src/main/webapp/src/app/app.routes.ts
@@ -2,11 +2,15 @@
 
 import { HomeComponent } from './home.component';
 import { PackListComponent } from './pack.list.component';
+import { LicenseListComponent } from './license.list.component';
 import { LoginFormComponent } from './login.form.component';
 
 const routes: Routes = [
  // {path: '', redirectTo: '/packs', pathMatch: 'full'}, 
-  {path: 'packs', component: PackListComponent },
+  {path: 'packs', children: [
+    {path: '', component: PackListComponent },
+    {path: ':id/licenses', component: LicenseListComponent },
+  ]},
   {path: 'login', component: LoginFormComponent }
 ];
 /*    {path: 'product', component: DashboardProductComponent, children: [

--
Gitblit v1.3.2