| .. | .. |
|---|
| 18 | 18 | import { LicenseTypesService } from './resources/license_types'; |
|---|
| 19 | 19 | import { OrganizationsService } from './resources/organizations'; |
|---|
| 20 | 20 | import { ApplicationsService } from './resources/applications'; |
|---|
| 21 | | -import { UsersService } from './resources/users'; |
|---|
| 22 | 21 | 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'; |
|---|
| 26 | 23 | import { MenuComponent } from './menu.component'; |
|---|
| 27 | 24 | import { NoMenuComponent } from './nomenu.component'; |
|---|
| 28 | 25 | 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'; |
|---|
| 30 | 30 | import { LicenseFormComponent } from './forms/license.form.component'; |
|---|
| 31 | 31 | |
|---|
| 32 | 32 | |
|---|
| .. | .. |
|---|
| 35 | 35 | import { LocaleServiceModule } from './common/i18n'; |
|---|
| 36 | 36 | import { SeCurisSession } from './common/session'; |
|---|
| 37 | 37 | import { PackFormComponent } from "./forms/pack.form.component"; |
|---|
| 38 | +import { ApplicationFormComponent } from './forms/application.form.component'; |
|---|
| 39 | +import { ApplicationListComponent } from './listing/application.list.component'; |
|---|
| 38 | 40 | |
|---|
| 39 | 41 | @NgModule({ |
|---|
| 40 | 42 | imports: [ |
|---|
| .. | .. |
|---|
| 53 | 55 | appRoutes, |
|---|
| 54 | 56 | ], |
|---|
| 55 | 57 | declarations: [ |
|---|
| 56 | | - HeroDetailComponent, |
|---|
| 58 | + ApplicationListComponent, |
|---|
| 59 | + ApplicationFormComponent, |
|---|
| 57 | 60 | PackListComponent, |
|---|
| 58 | 61 | PackFormComponent, |
|---|
| 59 | 62 | LoginFormComponent, |
|---|
| .. | .. |
|---|
| 64 | 67 | HomeComponent, |
|---|
| 65 | 68 | MenuComponent, |
|---|
| 66 | 69 | NoMenuComponent, |
|---|
| 67 | | - FooterComponent |
|---|
| 70 | + FieldReadonlyComponent, |
|---|
| 71 | + FooterComponent |
|---|
| 68 | 72 | ], |
|---|
| 69 | 73 | bootstrap: [ HomeComponent ], |
|---|
| 70 | | - entryComponents: [ PackFormComponent, LicenseFormComponent ], |
|---|
| 74 | + entryComponents: [ ], |
|---|
| 71 | 75 | providers: [ |
|---|
| 72 | 76 | SeCurisSession, |
|---|
| 73 | 77 | UserService, |
|---|