1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 09:43:23 +00:00

add support for readonly flag on collections

This commit is contained in:
Kyle Spearrin
2018-06-11 14:32:35 -04:00
parent 4bd9a9fc11
commit 5db55496c2
4 changed files with 9 additions and 1 deletions

View File

@@ -4,10 +4,12 @@ export class CollectionData {
id: string;
organizationId: string;
name: string;
readOnly: boolean;
constructor(response: CollectionResponse) {
this.id = response.id;
this.organizationId = response.organizationId;
this.name = response.name;
this.readOnly = response.readOnly;
}
}