Fix appconfig injection
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
Some checks failed
FarmMaps.Develop/FarmMapsLib/pipeline/head There was a failure building this commit
This commit is contained in:
parent
1c3f5600f8
commit
83739ee4e9
@ -2,10 +2,9 @@ import { OAuthService, OAuthStorage } from 'angular-oauth2-oidc';
|
|||||||
import { ItemTypeService } from '../services/itemtype.service';
|
import { ItemTypeService } from '../services/itemtype.service';
|
||||||
import { AppConfig } from "./app.config";
|
import { AppConfig } from "./app.config";
|
||||||
import { IAuthconfigFactory } from './authconfigFactory';
|
import { IAuthconfigFactory } from './authconfigFactory';
|
||||||
|
import { Injector } from '@angular/core';
|
||||||
|
|
||||||
|
export function appConfigFactory(injector:Injector, appConfig: AppConfig, oauthService: OAuthService, authconfigFactory:IAuthconfigFactory,authStorage:OAuthStorage,itemtypeService:ItemTypeService): () => Promise<any> {
|
||||||
|
|
||||||
export function appConfigFactory(appConfig: AppConfig, oauthService: OAuthService, authconfigFactory:IAuthconfigFactory,authStorage:OAuthStorage,itemtypeService:ItemTypeService): () => Promise<any> {
|
|
||||||
return (): Promise<any> => {
|
return (): Promise<any> => {
|
||||||
return new Promise<void>((resolve,reject) => {
|
return new Promise<void>((resolve,reject) => {
|
||||||
appConfig.load().then(() => {
|
appConfig.load().then(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user