|
|
|
|
@ -12,6 +12,7 @@ export class CollectionView implements View, ITreeNodeObject {
@@ -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 {
@@ -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; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|