1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-15 07:43:35 +00:00

SM-904: Remove SecretsManagerBeta (Phase 2) (#6891)

* SM-904: Remove SecretsManagerBeta

* SM-904: Remove additional places sm beta is used

* SM-904: Remove unused SM Beta messages
This commit is contained in:
Colton Hurst
2024-01-31 17:09:35 -05:00
committed by GitHub
parent 3cf17d1073
commit 01781848f3
4 changed files with 1 additions and 62 deletions

View File

@@ -14,7 +14,6 @@ export class OrganizationSubscriptionResponse extends OrganizationResponse {
customerDiscount: BillingCustomerDiscount;
expiration: string;
expirationWithoutGracePeriod: string;
secretsManagerBeta: boolean;
constructor(response: any) {
super(response);
@@ -32,7 +31,6 @@ export class OrganizationSubscriptionResponse extends OrganizationResponse {
customerDiscount == null ? null : new BillingCustomerDiscount(customerDiscount);
this.expiration = this.getResponseProperty("Expiration");
this.expirationWithoutGracePeriod = this.getResponseProperty("ExpirationWithoutGracePeriod");
this.secretsManagerBeta = this.getResponseProperty("SecretsManagerBeta");
}
}