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

org collection create and get template

This commit is contained in:
Kyle Spearrin
2019-09-25 16:08:56 -04:00
parent 3915e43435
commit d2ef504b40
7 changed files with 83 additions and 3 deletions

View File

@@ -334,7 +334,7 @@ export class Program extends BaseProgram {
.action(async (object, encodedJson, cmd) => {
await this.exitIfLocked();
const command = new CreateCommand(this.main.cipherService, this.main.folderService,
this.main.userService, this.main.cryptoService);
this.main.userService, this.main.cryptoService, this.main.apiService);
const response = await command.run(object, encodedJson, cmd);
this.processResponse(response);
});