1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 07:13:32 +00:00

[AC-1982] Add AllowAdminAccessToAllCollectionItems setting to the organization (#7268)

This commit is contained in:
Shane Melton
2023-12-18 17:32:53 -08:00
committed by GitHub
parent f04cd7eeef
commit cdb59f0939
2 changed files with 7 additions and 0 deletions

View File

@@ -68,6 +68,10 @@ export class Organization {
* Refers to the ability for an organization to limit collection creation and deletion to owners and admins only
*/
limitCollectionCreationDeletion: boolean;
/**
* Refers to the ability for an owner/admin to access all collection items, regardless of assigned collections
*/
allowAdminAccessToAllCollectionItems: boolean;
constructor(obj?: OrganizationData) {
if (obj == null) {
@@ -120,6 +124,7 @@ export class Organization {
this.familySponsorshipToDelete = obj.familySponsorshipToDelete;
this.accessSecretsManager = obj.accessSecretsManager;
this.limitCollectionCreationDeletion = obj.limitCollectionCreationDeletion;
this.allowAdminAccessToAllCollectionItems = obj.allowAdminAccessToAllCollectionItems;
}
get canAccess() {