Skip to content

Commit

Permalink
CLOUDTRUST-1269 Fix ClientID regexp
Browse files Browse the repository at this point in the history
  • Loading branch information
harture committed Jun 14, 2019
1 parent e65b0f1 commit 2db76f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/management/api.go
Expand Up @@ -312,7 +312,7 @@ const (
RegExpID = `^[a-z0-9]{8}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{4}-[a-z0-9]{12}$`

// Client
RegExpClientID = `^[a-zA-Z0-9_-.]{1,255}$`
RegExpClientID = `^[a-zA-Z0-9-_.]{1,255}$`

// User
RegExpUsername = `^[a-zA-Z0-9-_.]{1,128}$`
Expand Down

0 comments on commit 2db76f3

Please sign in to comment.