mirror of
https://github.com/bitwarden/server.git
synced 2025-07-03 00:52:49 -05:00
add support for multiple uris on login model.
refactor cipher data models.
This commit is contained in:
11
src/Core/Enums/UriMatchType.cs
Normal file
11
src/Core/Enums/UriMatchType.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace Bit.Core.Enums
|
||||
{
|
||||
public enum UriMatchType : byte
|
||||
{
|
||||
BaseDomain = 0,
|
||||
FullHostname = 1,
|
||||
FullUri = 2,
|
||||
StartsWith = 3,
|
||||
RegularExpression = 4
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user