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

add get fingerprint <id> command

This commit is contained in:
Kyle Spearrin
2018-11-16 10:02:22 -05:00
parent 4df35c1ad7
commit f4887b62c0
3 changed files with 30 additions and 3 deletions

View File

@@ -252,6 +252,7 @@ export class Program {
writeLn(' collection');
writeLn(' organization');
writeLn(' template');
writeLn(' fingerprint');
writeLn('');
writeLn(' Id:');
writeLn('');
@@ -274,7 +275,8 @@ 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.userService, this.main.searchService);
this.main.cryptoService, this.main.userService, this.main.searchService,
this.main.apiService);
const response = await command.run(object, id, cmd);
this.processResponse(response);
});