rsanchez
2017-03-19 280daa7f3f858ecfef9c91ffd5dea1007f021048
securis/src/main/webapp/src/app/app.module.ts
....@@ -18,15 +18,15 @@
1818 import { LicenseTypesService } from './resources/license_types';
1919 import { OrganizationsService } from './resources/organizations';
2020 import { ApplicationsService } from './resources/applications';
21
-import { UsersService } from './resources/users';
2221 import { LicensesService } from './resources/licenses';
23
-import { PackListComponent } from './pack.list.component';
24
-import { HeroDetailComponent } from './detail.component';
25
-import { LoginFormComponent } from './login.form.component';
22
+import { UsersService } from './resources/users';
2623 import { MenuComponent } from './menu.component';
2724 import { NoMenuComponent } from './nomenu.component';
2825 import { FooterComponent } from './footer.component';
29
-import { LicenseListComponent } from './license.list.component';
26
+import { FieldReadonlyComponent } from './common/utils';
27
+import { LicenseListComponent } from './listing/license.list.component';
28
+import { PackListComponent } from './listing/pack.list.component';
29
+import { LoginFormComponent } from './forms/login.form.component';
3030 import { LicenseFormComponent } from './forms/license.form.component';
3131
3232
....@@ -35,6 +35,8 @@
3535 import { LocaleServiceModule } from './common/i18n';
3636 import { SeCurisSession } from './common/session';
3737 import { PackFormComponent } from "./forms/pack.form.component";
38
+import { ApplicationFormComponent } from './forms/application.form.component';
39
+import { ApplicationListComponent } from './listing/application.list.component';
3840
3941 @NgModule({
4042 imports: [
....@@ -53,7 +55,8 @@
5355 appRoutes,
5456 ],
5557 declarations: [
56
- HeroDetailComponent,
58
+ ApplicationListComponent,
59
+ ApplicationFormComponent,
5760 PackListComponent,
5861 PackFormComponent,
5962 LoginFormComponent,
....@@ -64,10 +67,11 @@
6467 HomeComponent,
6568 MenuComponent,
6669 NoMenuComponent,
67
- FooterComponent
70
+ FieldReadonlyComponent,
71
+ FooterComponent
6872 ],
6973 bootstrap: [ HomeComponent ],
70
- entryComponents: [ PackFormComponent, LicenseFormComponent ],
74
+ entryComponents: [ ],
7175 providers: [
7276 SeCurisSession,
7377 UserService,