1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-05 10:02:47 -05:00

Requested configuration cleanup for sso (#891)

This commit is contained in:
Chad Scharf
2020-08-26 08:45:10 -04:00
committed by GitHub
parent 2cd6d4f61a
commit 1c04e30689
4 changed files with 21 additions and 20 deletions

View File

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

View File

@ -2,8 +2,8 @@
{
public enum Saml2SigningBehavior : byte
{
IfIdpWantAuthnRequestsSigned = 0,
Always = 1,
Never = 3
IfIdpWantAuthnRequestsSigned = 0,
Always = 1,
Never = 3
}
}

View File

@ -1,8 +0,0 @@
namespace Bit.Core.Enums
{
public enum SsoType : byte
{
OpenIdConnect = 1,
Saml2 = 2,
}
}