fix: 用户密码最小长度调整为六位 (#55)

This commit is contained in:
chengma
2026-08-09 16:14:58 +08:00
parent ac9e227ee7
commit 2cce9e3888
10 changed files with 39 additions and 15 deletions
+1 -1
View File
@@ -20,7 +20,7 @@ import (
const (
WebSessionDuration = 12 * time.Hour
minimumPasswordLen = 8
minimumPasswordLen = 6
maxUsernameLen = 64
)