1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +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

@@ -34,6 +34,7 @@ export class OrganizationResponse extends BaseResponse {
maxAutoscaleSmServiceAccounts?: number;
limitCollectionCreationDeletion: boolean;
allowAdminAccessToAllCollectionItems: boolean;
flexibleCollections: boolean;
constructor(response: any) {
super(response);
@@ -75,5 +76,6 @@ export class OrganizationResponse extends BaseResponse {
this.allowAdminAccessToAllCollectionItems = this.getResponseProperty(
"AllowAdminAccessToAllCollectionItems",
);
this.flexibleCollections = this.getResponseProperty("FlexibleCollections");
}
}