From e0681d0ba6008767145613cc9ac14606aa7d3524 Mon Sep 17 00:00:00 2001 From: Laszlo Magyar Date: Wed, 10 Feb 2021 15:33:17 +0100 Subject: [PATCH] Typo in add-on's configuration REGEX example (#801) We have to escape the special chars in the REGEX. Co-authored-by: Laszlo Magyar <> --- docs/add-ons/configuration.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/add-ons/configuration.md b/docs/add-ons/configuration.md index 2bf94d37..4c9704b8 100644 --- a/docs/add-ons/configuration.md +++ b/docs/add-ons/configuration.md @@ -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",