mirror of
https://github.com/bitwarden/browser
synced 2026-01-07 02:53:28 +00:00
Add manage property to synced Collection data
This commit is contained in:
@@ -6,6 +6,7 @@ export class CollectionData {
|
||||
name: string;
|
||||
externalId: string;
|
||||
readOnly: boolean;
|
||||
manage: boolean;
|
||||
|
||||
constructor(response: CollectionDetailsResponse) {
|
||||
this.id = response.id;
|
||||
@@ -13,5 +14,6 @@ export class CollectionData {
|
||||
this.name = response.name;
|
||||
this.externalId = response.externalId;
|
||||
this.readOnly = response.readOnly;
|
||||
this.manage = response.manage;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user