Skip to content

Commit

Permalink
Allow more characters in result names
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Dec 11, 2024
1 parent 81dd898 commit c58cc09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flows/results.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c58cc09

Please sign in to comment.