1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Merge pull request #1244 from jamesa/develop

Add full name field to admin's user edit page (fixes #1130)
This commit is contained in:
无闻
2015-07-25 00:39:16 +08:00
3 changed files with 6 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ import (
)
type AdminEditUserForm struct {
FullName string `form:"fullname" binding:"MaxSize(100)"`
Email string `binding:"Required;Email;MaxSize(50)"`
Password string `binding:"OmitEmpty;MinSize(6);MaxSize(255)"`
Website string `binding:"MaxSize(50)"`