mirror of
https://github.com/bitwarden/cli
synced 2025-12-16 00:03:23 +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:
@@ -367,7 +367,7 @@ export class GetCommand {
|
||||
decCollection.name = await this.cryptoService.decryptToUtf8(
|
||||
new CipherString(response.name), orgKey);
|
||||
const groups = response.groups == null ? null :
|
||||
response.groups.map((g) => new SelectionReadOnly(g.id, g.readOnly));
|
||||
response.groups.map((g) => new SelectionReadOnly(g.id, g.readOnly, g.hidePasswords));
|
||||
const res = new OrganizationCollectionResponse(decCollection, groups);
|
||||
return Response.success(res);
|
||||
} catch (e) {
|
||||
|
||||
Reference in New Issue
Block a user