1
0
mirror of https://github.com/bitwarden/server.git synced 2025-07-17 07:30:59 -05: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

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

View File

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