Update creator plugin field name from "Folder Context" to "Folder Path" and adjust validation pattern to allow slashes.

This commit is contained in:
Jakub Jezek 2024-03-19 13:19:35 +01:00
parent 9090706252
commit 6a01b8b6ac
No known key found for this signature in database
GPG key ID: 730D7C02726179A7

View file

@ -185,11 +185,11 @@ DEFAULT_CREATORS = {
"validation_pattern": "^([a-z0-9#._\\/]*)$"
},
{
"name": "Folder Context",
"name": "Folder Path",
"type": "text",
"default": "",
"required_column": True,
"validation_pattern": "^([a-zA-Z0-9_]*)$"
"validation_pattern": "^([a-zA-Z0-9_\\/]*)$"
},
{
"name": "Task Name",