mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 05:43:41 +00:00
Add manage property to synced Collection data
This commit is contained in:
@@ -12,6 +12,7 @@ export class CollectionView implements View, ITreeNodeObject {
|
||||
externalId: string = null;
|
||||
readOnly: boolean = null;
|
||||
hidePasswords: boolean = null;
|
||||
manage: boolean = null;
|
||||
|
||||
constructor(c?: Collection | CollectionAccessDetailsResponse) {
|
||||
if (!c) {
|
||||
@@ -24,6 +25,7 @@ export class CollectionView implements View, ITreeNodeObject {
|
||||
if (c instanceof Collection) {
|
||||
this.readOnly = c.readOnly;
|
||||
this.hidePasswords = c.hidePasswords;
|
||||
this.manage = c.manage;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user