Typo in add-on's configuration REGEX example (#801)

We have to escape the special chars in the REGEX.

Co-authored-by: Laszlo Magyar <>
This commit is contained in:
Laszlo Magyar 2021-02-10 15:33:17 +01:00 committed by GitHub
parent 5346092ac8
commit e0681d0ba6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ The `schema` looks like `options` but describes how we should validate the user
"logins": [
{ "username": "str", "password": "str" }
],
"random": ["match(^\w*$)"],
"random": ["match(^\\w*$)"],
"link": "url",
"size": "int(5,20)",
"count": "float",