move initialization of UV service dep (#10290)

This commit is contained in:
Jake Fink 2024-07-26 14:23:20 -04:00 committed by GitHub
parent 7594ebead2
commit a437868727
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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,