chore: update username matcher

This commit is contained in:
Steven 2023-09-25 20:03:58 +08:00
parent 8c2f89edc5
commit ad3487a9ac
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ import (
)
var (
usernameMatcher = regexp.MustCompile("^[a-z]([a-z0-9-]{2,30}[a-z0-9])?$")
usernameMatcher = regexp.MustCompile("^[a-z]([a-z0-9-]{1,30}[a-z0-9])?$")
)
type SignIn struct {

View File

@ -23,7 +23,7 @@ import (
)
var (
usernameMatcher = regexp.MustCompile("^[a-z]([a-z0-9-]{2,30}[a-z0-9])?$")
usernameMatcher = regexp.MustCompile("^[a-z]([a-z0-9-]{1,30}[a-z0-9])?$")
)
type UserService struct {