| .. | .. |
|---|
| 28 | 28 | import { FooterComponent } from './footer.component'; |
|---|
| 29 | 29 | import { LicenseListComponent } from './listing/license.list.component'; |
|---|
| 30 | 30 | import { PackListComponent } from './listing/pack.list.component'; |
|---|
| 31 | +import { ApplicationListComponent } from './listing/application.list.component'; |
|---|
| 32 | +import { LicenseTypeListComponent } from './listing/licensetype.list.component'; |
|---|
| 33 | +import { OrganizationListComponent } from './listing/organization.list.component'; |
|---|
| 34 | +import { UserListComponent } from './listing/user.list.component'; |
|---|
| 35 | + |
|---|
| 31 | 36 | import { LoginFormComponent } from './forms/login.form.component'; |
|---|
| 32 | 37 | import { LicenseFormComponent } from './forms/license.form.component'; |
|---|
| 38 | +import { LicenseTypeFormComponent } from './forms/licensetype.form.component'; |
|---|
| 39 | +import { OrganizationFormComponent } from './forms/organization.form.component'; |
|---|
| 40 | +import { UserFormComponent } from './forms/user.form.component'; |
|---|
| 41 | +import { ApplicationFormComponent } from './forms/application.form.component'; |
|---|
| 42 | +import { PackFormComponent } from "./forms/pack.form.component"; |
|---|
| 33 | 43 | |
|---|
| 34 | 44 | |
|---|
| 35 | 45 | import { appRoutes, appRoutingProviders } from './app.routes'; |
|---|
| 36 | 46 | import { requestOptionsProvider, requestBackendProvider } from './common/default.requests.options'; |
|---|
| 37 | 47 | import { LocaleServiceModule } from './common/i18n'; |
|---|
| 38 | 48 | import { SeCurisSession } from './common/session'; |
|---|
| 39 | | -import { PackFormComponent } from "./forms/pack.form.component"; |
|---|
| 40 | | -import { ApplicationFormComponent } from './forms/application.form.component'; |
|---|
| 41 | | -import { ApplicationListComponent } from './listing/application.list.component'; |
|---|
| 42 | 49 | |
|---|
| 43 | 50 | @NgModule({ |
|---|
| 44 | 51 | imports: [ |
|---|
| .. | .. |
|---|
| 64 | 71 | LoginFormComponent, |
|---|
| 65 | 72 | ErrorCheckerComponent, |
|---|
| 66 | 73 | LicenseListComponent, |
|---|
| 74 | + LicenseTypeListComponent, |
|---|
| 75 | + OrganizationListComponent, |
|---|
| 76 | + UserListComponent, |
|---|
| 67 | 77 | LicenseFormComponent, |
|---|
| 78 | + LicenseTypeFormComponent, |
|---|
| 79 | + OrganizationFormComponent, |
|---|
| 80 | + UserFormComponent, |
|---|
| 68 | 81 | I18nDirective, |
|---|
| 69 | 82 | HomeComponent, |
|---|
| 70 | 83 | MenuComponent, |
|---|
| .. | .. |
|---|
| 82 | 95 | LicensesService, |
|---|
| 83 | 96 | PackFormComponent, |
|---|
| 84 | 97 | LicenseFormComponent, |
|---|
| 98 | + LicenseTypeFormComponent, |
|---|
| 99 | + OrganizationFormComponent, |
|---|
| 100 | + UserFormComponent, |
|---|
| 85 | 101 | ApplicationsService, |
|---|
| 86 | 102 | OrganizationsService, |
|---|
| 87 | 103 | LicenseTypesService, |
|---|