From 1a1ae4e41bb97d461b9002e8689a0c8013b1487c Mon Sep 17 00:00:00 2001 From: Rowan Seymour Date: Wed, 11 Dec 2024 22:12:30 +0000 Subject: [PATCH] Allow more characters in result names --- flows/results.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flows/results.go b/flows/results.go index b0a0de81c..9830caba7 100644 --- a/flows/results.go +++ b/flows/results.go @@ -16,7 +16,7 @@ import ( ) func init() { - resultNameRegex := regexp.MustCompile(`^[a-zA-Z0-9\-_\s]{1,64}$`) + resultNameRegex := regexp.MustCompile(`^[a-zA-Z0-9\-_\s&:/@%?]{1,64}$`) resultCategoryRegex := regexp.MustCompile(`^.{1,36}$`) utils.RegisterValidatorTag("result_name",