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:
@@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user