1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-22 19:23:52 +00:00

Use new endpoint to determine SM standalone (#8904)

This commit is contained in:
Alex Morask
2024-04-24 16:29:00 -04:00
committed by GitHub
parent e89c82defe
commit a8ba48898b
7 changed files with 37 additions and 25 deletions

View File

@@ -0,0 +1,10 @@
import { BaseResponse } from "../../../models/response/base.response";
export class OrganizationBillingMetadataResponse extends BaseResponse {
isOnSecretsManagerStandalone: boolean;
constructor(response: any) {
super(response);
this.isOnSecretsManagerStandalone = this.getResponseProperty("IsOnSecretsManagerStandalone");
}
}