fix: 系统用户账号简单4位长度,密码简单6位

This commit is contained in:
TsMask
2025-08-05 17:39:26 +08:00
parent 96b15d4cf2
commit cc2c18e75d
6 changed files with 50 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ func ValidUsername(username string) bool {
if username == "" {
return false
}
pattern := `^[a-zA-Z][a-z0-9A-Z]{5,}`
pattern := `^.{4,}$` //`^[a-zA-Z][a-z0-9A-Z]{5,}`
match, err := regexp.MatchString(pattern, username)
if err != nil {
return false

View File

@@ -186,7 +186,7 @@ func (s *SysUserController) Add(c *gin.Context) {
}
if !regular.ValidUsername(body.UserName) {
// msg := fmt.Sprintf("新增用户【%s】失败登录账号用户账号只能包含大写小写字母数字且不少于4位", body.UserName)
msg := fmt.Sprintf("Add a new user [%s] failed to log in the account user account can only contain upper and lower case letters, numbers, and not less than 4 digits", body.UserName)
msg := fmt.Sprintf("Add a new user [%s] failed to log in the account user account not less than 4 digits", body.UserName)
c.JSON(400, resp.ErrMsg(msg))
return
}