1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-06-20 09:35:22 +02: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
No known key found for this signature in database
GPG Key ID: A65ACD91BADF316B

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;
}
}