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:
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
|
||||
}
|
||||
}
|
8
src/Core/Enums/SsoType.cs
Normal file
8
src/Core/Enums/SsoType.cs
Normal file
@ -0,0 +1,8 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum SsoType : byte
|
||||
{
|
||||
OpenIdConnect = 1,
|
||||
Saml2 = 2,
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user