1
0
mirror of https://github.com/bitwarden/cli synced 2025-12-16 00:03:23 +00:00

org collection list command

This commit is contained in:
Kyle Spearrin
2019-10-01 11:29:25 -04:00
parent 04df76e83f
commit 1de6c2884b
2 changed files with 45 additions and 2 deletions

View File

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