1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-11 13:53:34 +00:00

PM-15091 Remove client side featureflag.AccessIntelligence and use DB feature flag (#12247)

* PM-15091 remove featureflag.AccessIntelligence

* removed unwanted lines of code

* fixed merge conflict
This commit is contained in:
Vijay Oommen
2024-12-05 11:24:51 -06:00
committed by GitHub
parent c11f429ddb
commit d6e1fe70ca
9 changed files with 12 additions and 10 deletions

View File

@@ -81,6 +81,7 @@ export class Organization {
* matches one of the verified domains of that organization, and the user is a member of it.
*/
userIsManagedByOrganization: boolean;
useRiskInsights: boolean;
constructor(obj?: OrganizationData) {
if (obj == null) {
@@ -137,6 +138,7 @@ export class Organization {
this.limitCollectionDeletion = obj.limitCollectionDeletion;
this.allowAdminAccessToAllCollectionItems = obj.allowAdminAccessToAllCollectionItems;
this.userIsManagedByOrganization = obj.userIsManagedByOrganization;
this.useRiskInsights = obj.useRiskInsights;
}
get canAccess() {