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:
parent
447b0bf9b9
commit
6e9fd96a64
@ -29,6 +29,7 @@ class ScopeType(str, Enum):
|
|||||||
HOST = "host"
|
HOST = "host"
|
||||||
DOMAIN = "domain"
|
DOMAIN = "domain"
|
||||||
ANY = "any"
|
ANY = "any"
|
||||||
|
CUSTOM = "custom"
|
||||||
|
|
||||||
|
|
||||||
# ============================================================================
|
# ============================================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user