diff options
author | Unknown <joe2010xtmf@163.com> | 2014-05-01 08:26:41 -0400 |
---|---|---|
committer | Unknown <joe2010xtmf@163.com> | 2014-05-01 08:26:41 -0400 |
commit | 89c99167b2916a36ef112125662e014ca5b9da26 (patch) | |
tree | 5568a33c5e04677c584e7958b20e1e9b2c04e799 /modules/auth | |
parent | d0ea4c7b686a200af3eca3847909b515c40539ee (diff) | |
download | gitea-89c99167b2916a36ef112125662e014ca5b9da26.tar.gz gitea-89c99167b2916a36ef112125662e014ca5b9da26.zip |
Fix #149
Diffstat (limited to 'modules/auth')
-rw-r--r-- | modules/auth/user.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/modules/auth/user.go b/modules/auth/user.go index 973894221d..8d60670db4 100644 --- a/modules/auth/user.go +++ b/modules/auth/user.go @@ -75,6 +75,7 @@ type FeedsForm struct { type UpdateProfileForm struct { UserName string `form:"username" binding:"Required;AlphaDash;MaxSize(30)"` + FullName string `form:"fullname" binding:"MaxSize(40)"` Email string `form:"email" binding:"Required;Email;MaxSize(50)"` Website string `form:"website" binding:"MaxSize(50)"` Location string `form:"location" binding:"MaxSize(50)"` |