mirror of
https://github.com/bitwarden/server
synced 2025-12-21 10:43:44 +00: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