1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +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

@@ -51,6 +51,7 @@ export class OrganizationData {
accessSecretsManager: boolean;
limitCollectionCreationDeletion: boolean;
allowAdminAccessToAllCollectionItems: boolean;
flexibleCollections: boolean;
constructor(
response: ProfileOrganizationResponse,
@@ -104,6 +105,7 @@ export class OrganizationData {
this.accessSecretsManager = response.accessSecretsManager;
this.limitCollectionCreationDeletion = response.limitCollectionCreationDeletion;
this.allowAdminAccessToAllCollectionItems = response.allowAdminAccessToAllCollectionItems;
this.flexibleCollections = response.flexibleCollections;
this.isMember = options.isMember;
this.isProviderUser = options.isProviderUser;