This commit is contained in:
Diamantis Tziotzios 2024-06-07 09:49:19 +03:00
parent eaa802872a
commit 72d2728474
1 changed files with 70 additions and 68 deletions

View File

@ -118,7 +118,8 @@ export function InstallationConfigurationFactory(appConfig: ConfigurationService
} }
@NgModule({ declarations: [ @NgModule({
declarations: [
AppComponent, AppComponent,
ReloadHelperComponent ReloadHelperComponent
], ],
@ -160,7 +161,7 @@ export function InstallationConfigurationFactory(appConfig: ConfigurationService
{ {
provide: APP_INITIALIZER, provide: APP_INITIALIZER,
useFactory: InstallationConfigurationFactory, useFactory: InstallationConfigurationFactory,
deps: [ConfigurationService, KeycloakService, AuthService, LanguageService], deps: [ConfigurationService, KeycloakService, AuthService, LanguageService, TenantHandlingService],
multi: true multi: true
}, },
{ {
@ -184,5 +185,6 @@ export function InstallationConfigurationFactory(appConfig: ConfigurationService
MatomoService, MatomoService,
AnalyticsService, AnalyticsService,
provideHttpClient(withInterceptorsFromDi()) provideHttpClient(withInterceptorsFromDi())
] }) ]
})
export class AppModule { } export class AppModule { }