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

@@ -35,6 +35,7 @@ export class OrganizationResponse extends BaseResponse {
limitCollectionCreation: boolean;
limitCollectionDeletion: boolean;
allowAdminAccessToAllCollectionItems: boolean;
useRiskInsights: boolean;
constructor(response: any) {
super(response);
@@ -75,5 +76,6 @@ export class OrganizationResponse extends BaseResponse {
this.allowAdminAccessToAllCollectionItems = this.getResponseProperty(
"AllowAdminAccessToAllCollectionItems",
);
this.useRiskInsights = this.getResponseProperty("UseRiskInsights");
}
}