1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00:00

remove beta field from profile org response

This commit is contained in:
William Martin
2023-07-06 19:24:05 -04:00
parent 630f8c9200
commit 6c6249e1ec

View File

@@ -48,7 +48,6 @@ export class ProfileOrganizationResponse extends BaseResponse {
familySponsorshipValidUntil?: Date;
familySponsorshipToDelete?: boolean;
accessSecretsManager: boolean;
secretsManagerBeta: boolean;
constructor(response: any) {
super(response);
@@ -106,6 +105,5 @@ export class ProfileOrganizationResponse extends BaseResponse {
}
this.familySponsorshipToDelete = this.getResponseProperty("FamilySponsorshipToDelete");
this.accessSecretsManager = this.getResponseProperty("AccessSecretsManager");
this.secretsManagerBeta = this.getResponseProperty("SecretsManagerBeta") ?? false;
}
}