move initialization of UV service dep (#10290)
This commit is contained in:
parent
7594ebead2
commit
a437868727
|
@ -625,6 +625,8 @@ export class ServiceContainer {
|
|||
const lockedCallback = async (userId?: string) =>
|
||||
await this.cryptoService.clearStoredUserKey(KeySuffixOptions.Auto);
|
||||
|
||||
this.userVerificationApiService = new UserVerificationApiService(this.apiService);
|
||||
|
||||
this.userVerificationService = new UserVerificationService(
|
||||
this.cryptoService,
|
||||
this.accountService,
|
||||
|
@ -729,8 +731,6 @@ export class ServiceContainer {
|
|||
|
||||
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
|
||||
|
||||
this.userVerificationApiService = new UserVerificationApiService(this.apiService);
|
||||
|
||||
this.eventUploadService = new EventUploadService(
|
||||
this.apiService,
|
||||
this.stateProvider,
|
||||
|
|
Loading…
Reference in New Issue