1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 00:33:44 +00:00

Add useKeyConnector flag (#551)

This commit is contained in:
Oscar Hinton
2021-11-17 11:42:24 +01:00
committed by GitHub
parent 720967475b
commit e1b1efeea2
6 changed files with 16 additions and 10 deletions

View File

@@ -37,7 +37,7 @@ enum Saml2SigningBehavior {
export class SsoConfigApi extends BaseResponse {
configType: SsoType;
useKeyConnector: boolean;
keyConnectorEnabled: boolean;
keyConnectorUrl: string;
// OpenId
@@ -81,7 +81,7 @@ export class SsoConfigApi extends BaseResponse {
this.configType = this.getResponseProperty('ConfigType');
this.useKeyConnector = this.getResponseProperty('UseKeyConnector');
this.keyConnectorEnabled = this.getResponseProperty('KeyConnectorEnabled');
this.keyConnectorUrl = this.getResponseProperty('KeyConnectorUrl');
this.authority = this.getResponseProperty('Authority');