1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-20 02:03:39 +00:00

support for uri matching types to cipher service

This commit is contained in:
Kyle Spearrin
2018-03-02 12:03:03 -05:00
parent dc0befc9be
commit ad4c81ed84
6 changed files with 72 additions and 18 deletions

View File

@@ -1,6 +1,6 @@
export enum UriMatchType {
BaseDomain = 0,
FullHostname = 1,
Host = 1,
StartsWith = 2,
Exact = 3,
RegularExpression = 4,