Allow for "custom" scopeType (#324)

At the moment picking "custom" yields a UI error:

```
scopeType: value is not a valid enumeration member; permitted: 'page', 'page-spa', 'prefix', 'host', 'domain', 'any'
```
This commit is contained in:
Ed Summers 2022-09-22 22:17:32 -04:00 committed by GitHub
parent 447b0bf9b9
commit 6e9fd96a64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -29,6 +29,7 @@ class ScopeType(str, Enum):
HOST = "host"
DOMAIN = "domain"
ANY = "any"
CUSTOM = "custom"
# ============================================================================