1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

user canAccessPremium checks

This commit is contained in:
Kyle Spearrin
2018-08-28 23:17:39 -04:00
parent e4cac73174
commit 2bb3d27408
4 changed files with 9 additions and 8 deletions

View File

@@ -155,8 +155,7 @@ export default class MainBackground {
this.storageService, this.messagingService, async (expired: boolean) => await this.logout(expired));
this.passwordGenerationService = new PasswordGenerationService(this.cryptoService, this.storageService);
this.totpService = new TotpService(this.storageService, cryptoFunctionService);
this.autofillService = new AutofillService(this.cipherService, this.tokenService,
this.totpService);
this.autofillService = new AutofillService(this.cipherService, this.userService, this.totpService);
this.containerService = new ContainerService(this.cryptoService, this.platformUtilsService);
this.auditService = new AuditService(cryptoFunctionService, this.apiService);
this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService);