1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-21 10:43:23 +00:00

Remove Business Portal, add SSO configuration models (#506)

This commit is contained in:
Oscar Hinton
2021-10-06 19:36:20 +02:00
committed by GitHub
parent 91c5393ae7
commit bfa9a1e1bc
14 changed files with 175 additions and 65 deletions

View File

@@ -17,7 +17,6 @@ export class OrganizationData {
useTotp: boolean;
use2fa: boolean;
useApi: boolean;
useBusinessPortal: boolean;
useSso: boolean;
useResetPassword: boolean;
selfHost: boolean;
@@ -48,7 +47,6 @@ export class OrganizationData {
this.useTotp = response.useTotp;
this.use2fa = response.use2fa;
this.useApi = response.useApi;
this.useBusinessPortal = response.useBusinessPortal;
this.useSso = response.useSso;
this.useResetPassword = response.useResetPassword;
this.selfHost = response.selfHost;