Skip to content

Commit

Permalink
fix: for #263 to also support collection IDs with quotes - also add t…
Browse files Browse the repository at this point in the history
…o tag
  • Loading branch information
rkettelerij committed Dec 31, 2024
1 parent ef514fc commit 3277381
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/validators.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

var (
lowercaseIDRegexp = regexp.MustCompile("^[a-z0-9]([a-z0-9_-]*[a-z0-9]+|)$")
lowercaseIDRegexp = regexp.MustCompile("^[a-z0-9\"]([a-z0-9_-]*[a-z0-9\"]+|)$")
)

const (
Expand Down

0 comments on commit 3277381

Please sign in to comment.