Fix Anrede & Personentyp
diff --git a/src/app/pages/contacts/contacts.module.ts b/src/app/pages/contacts/contacts.module.ts index 771f2a4..5d9bc71 100644 --- a/src/app/pages/contacts/contacts.module.ts +++ b/src/app/pages/contacts/contacts.module.ts
@@ -32,6 +32,14 @@ import { ContactsApiClient } from '@pages/contacts/contacts-api-client'; import { EffectsModule } from '@ngrx/effects'; import { ContactsEffects } from '@shared/store/effects/contacts.effect'; +import { SalutationsEffects } from '@app/shared/store/effects/admin/salutations.effect'; +import { CommunicationTypesEffects } from '@app/shared/store/effects/admin/communication-types.effect'; +import { PersonTypesEffects } from '@app/shared/store/effects/admin/person-types.effect'; +import { AddressTypesEffects } from '@app/shared/store/effects/admin/address-types.effect'; +import { CommunicationTypesApiClient } from '../admin/communication-types/communication-types-api-client'; +import { PersonTypesApiClient } from '../admin/person-types/person-types-api-client'; +import { AddressTypesApiClient } from '../admin/address-types/address-types-api-client'; +import { SalutationsApiClient } from '../admin/salutations/salutations-api-client'; @NgModule({ @@ -46,11 +54,19 @@ NgrxFormsModule, FormsModule, AgGridModule.withComponents([SetFilterComponent]), - EffectsModule.forFeature([ContactsEffects]), + EffectsModule.forFeature([SalutationsEffects, CommunicationTypesEffects, PersonTypesEffects, AddressTypesEffects,ContactsEffects]), ContainersModule, ContactsRoutingModule, ], declarations: [ContactsListComponent], - providers: [ContactsSandbox, ContactsService, ContactsApiClient], + providers: [ + ContactsSandbox, + ContactsService, + ContactsApiClient, + CommunicationTypesApiClient, + PersonTypesApiClient, + AddressTypesApiClient, + SalutationsApiClient + ], }) export class ContactsModule {}
diff --git a/src/app/shared/constants/globals.ts b/src/app/shared/constants/globals.ts index 0156dcf..600ce11 100644 --- a/src/app/shared/constants/globals.ts +++ b/src/app/shared/constants/globals.ts
@@ -11,7 +11,7 @@ * SPDX-License-Identifier: EPL-2.0 ********************************************************************************/ export class Globals { - static FRONTEND_VERSION = '1.1.0'; + static FRONTEND_VERSION = '1.1.1'; static CONTACT_TYPE = class ContactType { static INTERNAL_PERSON = 'interne Person';