1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 15:53:27 +00:00

Add organization.flexibleCollections to models (#7442)

This commit is contained in:
Thomas Rittson
2024-01-11 13:52:18 +10:00
committed by GitHub
parent a572e4119e
commit 1f57244d1a
4 changed files with 12 additions and 0 deletions

View File

@@ -50,6 +50,7 @@ export class ProfileOrganizationResponse extends BaseResponse {
accessSecretsManager: boolean;
limitCollectionCreationDeletion: boolean;
allowAdminAccessToAllCollectionItems: boolean;
flexibleCollections: boolean;
constructor(response: any) {
super(response);
@@ -113,5 +114,6 @@ export class ProfileOrganizationResponse extends BaseResponse {
this.allowAdminAccessToAllCollectionItems = this.getResponseProperty(
"AllowAdminAccessToAllCollectionItems",
);
this.flexibleCollections = this.getResponseProperty("FlexibleCollections");
}
}