mirror of
https://github.com/bitwarden/server
synced 2025-12-18 09:13:19 +00:00
Added new SAML2 enums for configuration (#868)
This commit is contained in:
9
src/Core/Enums/Saml2BindingType.cs
Normal file
9
src/Core/Enums/Saml2BindingType.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Bit.Core.Enums
|
||||||
|
{
|
||||||
|
public enum Saml2BindingType : byte
|
||||||
|
{
|
||||||
|
HttpRedirect = 1,
|
||||||
|
HttpPost = 2,
|
||||||
|
Artifact = 4
|
||||||
|
}
|
||||||
|
}
|
||||||
9
src/Core/Enums/Saml2SigningBehavior.cs
Normal file
9
src/Core/Enums/Saml2SigningBehavior.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace Bit.Core.Enums
|
||||||
|
{
|
||||||
|
public enum Saml2SigningBehavior : byte
|
||||||
|
{
|
||||||
|
IfIdpWantAuthnRequestsSigned = 0,
|
||||||
|
Always = 1,
|
||||||
|
Never = 3
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user