1
0
mirror of https://github.com/bitwarden/directory-connector synced 2025-12-18 09:13:28 +00:00

BEEEP: Refactor services DI (#180)

This commit is contained in:
Oscar Hinton
2021-12-06 11:03:12 +00:00
committed by GitHub
parent 240e1d5813
commit 9bec2aa2f0
8 changed files with 140 additions and 80 deletions

View File

@@ -102,7 +102,7 @@ export class Program extends BaseProgram {
const command = new LoginCommand(this.main.authService, this.main.apiService, this.main.i18nService,
this.main.environmentService, this.main.passwordGenerationService, this.main.cryptoFunctionService,
this.main.platformUtilsService, this.main.userService, this.main.cryptoService,
this.main.policyService, 'connector', this.main.loginSyncService);
this.main.policyService, 'connector', this.main.loginSyncService, this.main.keyConnectorService);
if (!Utils.isNullOrWhitespace(clientId)) {
process.env.BW_CLIENTID = clientId;