From 470182be4f955a1c11d912743ce9e683ac4902a5 Mon Sep 17 00:00:00 2001
From: rsanchez <rsanchez@curisit.net>
Date: Mon, 20 Mar 2017 17:06:12 +0000
Subject: [PATCH] #3527 feature - Added skeleton for all other admin catalogs: users, orgs and lic types

---
 securis/src/main/webapp/src/app/app.module.ts |   22 +++++++++++++++++++---
 1 files changed, 19 insertions(+), 3 deletions(-)

diff --git a/securis/src/main/webapp/src/app/app.module.ts b/securis/src/main/webapp/src/app/app.module.ts
index d065fd0..57df58a 100644
--- a/securis/src/main/webapp/src/app/app.module.ts
+++ b/securis/src/main/webapp/src/app/app.module.ts
@@ -28,17 +28,24 @@
 import { FooterComponent }  from './footer.component';
 import { LicenseListComponent } from './listing/license.list.component';
 import { PackListComponent }  from './listing/pack.list.component';
+import { ApplicationListComponent } from './listing/application.list.component';
+import { LicenseTypeListComponent } from './listing/licensetype.list.component';
+import { OrganizationListComponent } from './listing/organization.list.component';
+import { UserListComponent } from './listing/user.list.component';
+
 import { LoginFormComponent } from './forms/login.form.component';
 import { LicenseFormComponent } from './forms/license.form.component';
+import { LicenseTypeFormComponent } from './forms/licensetype.form.component';
+import { OrganizationFormComponent } from './forms/organization.form.component';
+import { UserFormComponent } from './forms/user.form.component';
+import { ApplicationFormComponent } from './forms/application.form.component';
+import { PackFormComponent } from "./forms/pack.form.component";
 
 
 import { appRoutes, appRoutingProviders } from './app.routes';
 import { requestOptionsProvider, requestBackendProvider } from './common/default.requests.options';
 import { LocaleServiceModule } from './common/i18n';
 import { SeCurisSession } from './common/session';
-import { PackFormComponent } from "./forms/pack.form.component";
-import { ApplicationFormComponent } from './forms/application.form.component';
-import { ApplicationListComponent } from './listing/application.list.component';
 
 @NgModule({
   imports: [
@@ -64,7 +71,13 @@
     LoginFormComponent,
     ErrorCheckerComponent,
     LicenseListComponent,
+    LicenseTypeListComponent,
+    OrganizationListComponent,
+    UserListComponent,
     LicenseFormComponent,
+    LicenseTypeFormComponent,
+    OrganizationFormComponent,
+    UserFormComponent,
     I18nDirective,
     HomeComponent,
     MenuComponent,
@@ -82,6 +95,9 @@
     LicensesService,
     PackFormComponent,
     LicenseFormComponent,
+    LicenseTypeFormComponent,
+    OrganizationFormComponent,
+    UserFormComponent,
     ApplicationsService,
     OrganizationsService,
     LicenseTypesService,

--
Gitblit v1.3.2