1
0
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:
Thomas Rittson
2023-09-27 11:14:03 +10:00
parent a64ae699ce
commit 65cd39589c
4 changed files with 9 additions and 1 deletions

View File

@@ -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;
}
}