started adding custom forms command

This commit is contained in:
2024-02-22 12:23:34 +01:00
parent 5c48ad1c06
commit ce61678e1e
3 changed files with 175 additions and 7 deletions

View File

@@ -0,0 +1,20 @@
[
{
"label": "This is a simple textline",
"is_paragraph": false,
"placeholder": "...and it is required!",
"value": "",
"required": true,
"min_length": 0,
"max_length": 20
},
{
"label": "This is a paragraph",
"is_paragraph": true,
"placeholder": "...and it is not required!",
"value": "We already have some input here",
"required": false,
"min_length": 0,
"max_length": 2000
}
]