1
0
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:
Chad Scharf 2020-08-13 20:11:23 -04:00 committed by GitHub
parent 6aed80a67d
commit 38f7fff2f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,9 @@
namespace Bit.Core.Enums
{
public enum Saml2BindingType : byte
{
HttpRedirect = 1,
HttpPost = 2,
Artifact = 4
}
}

View File

@ -0,0 +1,9 @@
namespace Bit.Core.Enums
{
public enum Saml2SigningBehavior : byte
{
IfIdpWantAuthnRequestsSigned = 0,
Always = 1,
Never = 3
}
}