diff options
Diffstat (limited to 'internal/user')
-rw-r--r-- | internal/user/handler.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/user/handler.go b/internal/user/handler.go index d45f05c..c2e00cd 100644 --- a/internal/user/handler.go +++ b/internal/user/handler.go @@ -67,7 +67,7 @@ func (h *Handler) GetAllUsers() gin.HandlerFunc { func (h *Handler) signUp(c *gin.Context) { type SignUpReq struct { - Username string `json:"username" binding:"required,min=4,max=20"` + Username string `json:"username" binding:"required,min=1,max=20"` Password string `json:"password" binding:"required,min=8,max=45"` Email string `json:"email" binding:"required,email"` DisplayName string `json:"displayName"` |