1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00
This commit is contained in:
Kyle Spearrin
2018-08-29 09:36:47 -04:00
parent cfe3d9ae5f
commit 208c7f1996
2 changed files with 4 additions and 5 deletions

2
jslib

Submodule jslib updated: 42dbdb0043...5db115ae43

View File

@@ -271,8 +271,7 @@ export class Program {
await this.exitIfLocked();
const command = new GetCommand(this.main.cipherService, this.main.folderService,
this.main.collectionService, this.main.totpService, this.main.auditService,
this.main.cryptoService, this.main.tokenService, this.main.userService,
this.main.searchService);
this.main.cryptoService, this.main.userService, this.main.searchService);
const response = await command.run(object, id, cmd);
this.processResponse(response);
});
@@ -304,7 +303,7 @@ export class Program {
.action(async (object, encodedJson, cmd) => {
await this.exitIfLocked();
const command = new CreateCommand(this.main.cipherService, this.main.folderService,
this.main.tokenService, this.main.cryptoService);
this.main.userService, this.main.cryptoService);
const response = await command.run(object, encodedJson, cmd);
this.processResponse(response);
});
@@ -365,7 +364,7 @@ export class Program {
.action(async (object, id, cmd) => {
await this.exitIfLocked();
const command = new DeleteCommand(this.main.cipherService, this.main.folderService,
this.main.tokenService);
this.main.userService);
const response = await command.run(object, id, cmd);
this.processResponse(response);
});