mirror of
https://github.com/bitwarden/server.git
synced 2025-06-30 23:52:50 -05:00
CSA-6 Fix/remove artifact binding (#1885)
* Remove artifact binding, add validation * Re-add JSON properties but eviscerate them
This commit is contained in:
@ -4,6 +4,5 @@
|
||||
{
|
||||
HttpRedirect = 1,
|
||||
HttpPost = 2,
|
||||
Artifact = 4
|
||||
}
|
||||
}
|
||||
|
@ -51,7 +51,7 @@ namespace Bit.Core.Models.Data
|
||||
public string IdpX509PublicCert { get; set; }
|
||||
public Saml2BindingType IdpBindingType { get; set; } = Saml2BindingType.HttpRedirect;
|
||||
public bool IdpAllowUnsolicitedAuthnResponse { get; set; }
|
||||
public string IdpArtifactResolutionServiceUrl { get; set; }
|
||||
public string IdpArtifactResolutionServiceUrl { get => null; set { /*IGNORE*/ } }
|
||||
public bool IdpDisableOutboundLogoutRequests { get; set; }
|
||||
public string IdpOutboundSigningAlgorithm { get; set; } = SamlSigningAlgorithms.Sha256;
|
||||
public bool IdpWantAuthnRequestsSigned { get; set; }
|
||||
|
Reference in New Issue
Block a user