mirror of
https://github.com/bitwarden/server.git
synced 2025-02-23 03:01:23 +01:00
Added new SAML2 enums for configuration (#868)
This commit is contained in:
parent
6aed80a67d
commit
38f7fff2f9
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
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user