1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 18:23:31 +00:00

Add support for collections with hide passwords

This commit is contained in:
hinton
2020-05-21 15:49:56 +02:00
parent 2858724f44
commit 1fa3eb49ad
8 changed files with 24 additions and 3 deletions

View File

@@ -1,9 +1,11 @@
export class SelectionReadOnlyRequest {
id: string;
readOnly: boolean;
hidePasswords: boolean;
constructor(id: string, readOnly: boolean) {
constructor(id: string, readOnly: boolean, hidePasswords: boolean) {
this.id = id;
this.readOnly = readOnly;
this.hidePasswords = hidePasswords;
}
}