1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-18 01:03:35 +00:00

SSO login (#154)

* support sso login

* update jslib

* set clientid in base login command
This commit is contained in:
Kyle Spearrin
2020-08-03 12:30:32 -04:00
committed by GitHub
parent 74bc94a956
commit bd0f28b3be
7 changed files with 88 additions and 19 deletions

View File

@@ -130,7 +130,8 @@ export class Main {
this.i18nService, this.collectionService);
this.exportService = new ExportService(this.folderService, this.cipherService, this.apiService);
this.authService = new AuthService(this.cryptoService, this.apiService, this.userService, this.tokenService,
this.appIdService, this.i18nService, this.platformUtilsService, this.messagingService, true);
this.appIdService, this.i18nService, this.platformUtilsService, this.messagingService,
this.vaultTimeoutService, true);
this.auditService = new AuditService(this.cryptoFunctionService, this.apiService);
this.program = new Program(this);
}