mirror of
https://github.com/bitwarden/browser
synced 2025-12-20 02:03:39 +00:00
refactor for login uris and response model changes
This commit is contained in:
@@ -5,3 +5,4 @@ export { FieldType } from './fieldType';
|
||||
export { LogLevelType } from './logLevelType';
|
||||
export { SecureNoteType } from './secureNoteType';
|
||||
export { TwoFactorProviderType } from './twoFactorProviderType';
|
||||
export { UriMatchType } from './uriMatchType';
|
||||
|
||||
8
src/enums/uriMatchType.ts
Normal file
8
src/enums/uriMatchType.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
export enum UriMatchType {
|
||||
BaseDomain = 0,
|
||||
FullHostname = 1,
|
||||
StartsWith = 2,
|
||||
Exact = 3,
|
||||
RegularExpression = 4,
|
||||
Never = 5,
|
||||
}
|
||||
Reference in New Issue
Block a user