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

updates to status command and add hidePasswords (#146)

* a few updates to the recent status addition

* add hidePasswords functionality
This commit is contained in:
Kyle Spearrin
2020-06-17 11:01:34 -04:00
committed by GitHub
parent 62c7c30cb4
commit 72c56ca506
7 changed files with 25 additions and 23 deletions

View File

@@ -699,10 +699,12 @@ export class Program extends BaseProgram {
writeLn(' "status": "locked"');
writeLn(' }');
writeLn('');
writeLn(' The "status" is one of "unauthenticated", "locked", "unlocked":');
writeLn(' - "unauthenticated" when you are not logged in');
writeLn(' - "locked" when you are logged in and the vault is locked');
writeLn(' - "unlocked" when you are logged in and the vault is unlocked');
writeLn(' Notes:');
writeLn('');
writeLn(' `status` is one of:');
writeLn(' - `unauthenticated` when you are not logged in');
writeLn(' - `locked` when you are logged in and the vault is locked');
writeLn(' - `unlocked` when you are logged in and the vault is unlocked');
writeLn('', true);
})
.action(async (cmd: program.Command) => {