1
0
mirror of https://github.com/bitwarden/browser synced 2026-02-21 03:43:58 +00:00

PM-15091 client side changes to remove AccessRiskIntelligence flag

This commit is contained in:
voommen-livefront
2024-12-03 09:12:18 -06:00
parent 522611cf3b
commit e91cca7fd2
9 changed files with 17 additions and 13 deletions

View File

@@ -58,6 +58,7 @@ export class OrganizationData {
limitCollectionCreationDeletion: boolean;
allowAdminAccessToAllCollectionItems: boolean;
userIsManagedByOrganization: boolean;
useRiskInsights: boolean;
constructor(
response?: ProfileOrganizationResponse,
@@ -120,6 +121,7 @@ export class OrganizationData {
this.limitCollectionCreationDeletion = response.limitCollectionCreationDeletion;
this.allowAdminAccessToAllCollectionItems = response.allowAdminAccessToAllCollectionItems;
this.userIsManagedByOrganization = response.userIsManagedByOrganization;
this.useRiskInsights = response.useRiskInsights;
this.isMember = options.isMember;
this.isProviderUser = options.isProviderUser;