Skip to content
Snippets Groups Projects
Commit 07aa25c9 authored by Ophestra's avatar Ophestra
Browse files

name regex minimum length

parent 0144d277
No related branches found
No related tags found
No related merge requests found
......@@ -23,7 +23,7 @@ const (
)
var (
nameRegex = regexp.MustCompile(`^[a-z0-9()_-]*$`)
nameRegex = regexp.MustCompile(`^[a-z0-9()_-]{3,}$`)
sha256Regex = regexp.MustCompile(`\b[A-Fa-f0-9]{64}\b`)
secretRegex = regexp.MustCompile(`\b[A-Za-z]{64}\b`)
urlRegex = regexp.MustCompile(`(\b(https?|ftp)://)?[-A-Za-z0-9+&@#/%?=~_|!:,.;]+[-A-Za-z0-9+&@#/%=~_|]`)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment