mirror of
https://github.com/bitwarden/browser
synced 2025-12-19 09:43:23 +00:00
collection externalId
This commit is contained in:
@@ -7,6 +7,7 @@ export class CollectionView implements View, ITreeNodeObject {
|
||||
id: string = null;
|
||||
organizationId: string = null;
|
||||
name: string = null;
|
||||
externalId: string = null;
|
||||
readOnly: boolean = null;
|
||||
|
||||
constructor(c?: Collection) {
|
||||
@@ -17,5 +18,6 @@ export class CollectionView implements View, ITreeNodeObject {
|
||||
this.id = c.id;
|
||||
this.organizationId = c.organizationId;
|
||||
this.readOnly = c.readOnly;
|
||||
this.externalId = c.externalId;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user