1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +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

@@ -149,7 +149,7 @@ export class CreateCommand {
}
const groups = req.groups == null ? null :
req.groups.map((g) => new SelectionReadOnlyRequest(g.id, g.readOnly));
req.groups.map((g) => new SelectionReadOnlyRequest(g.id, g.readOnly, g.hidePasswords));
const request = new CollectionRequest();
request.name = (await this.cryptoService.encrypt(req.name, orgKey)).encryptedString;
request.externalId = req.externalId;