1
0
mirror of https://github.com/bitwarden/server synced 2026-01-20 01:13:18 +00:00

Move SSO core to Core lib, new resource strings (#911)

* Move SSO core to Core lib, new resource strings

* Missed resource strings for lookup
This commit is contained in:
Chad Scharf
2020-09-04 10:42:47 -04:00
committed by GitHub
parent 43619ed933
commit ed99b99bc1
6 changed files with 121 additions and 13 deletions

View File

@@ -279,18 +279,6 @@ namespace Bit.Core
public class SsoSettings
{
public int CacheLifetimeInSeconds { get; set; } = 60;
public virtual SamlSettings Saml { get; set; } = new SamlSettings();
public class SamlSettings
{
public Saml2NameIdFormat NameIdFormat { get; set; } =
Saml2NameIdFormat.Persistent;
public bool WantAssertionsSigned { get; set; }
public string OutboundSigningAlgorithm { get; set; }
public Saml2SigningBehavior SigningBehavior { get; set; } =
Saml2SigningBehavior.IfIdpWantAuthnRequestsSigned;
public bool ValidateCertificates { get; set; }
}
}
}
}