2014-03-21 10:15:58 +00:00
|
|
|
// Copyright 2014 The Gogs Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package auth
|
|
|
|
|
|
|
|
import (
|
2014-07-26 04:24:27 +00:00
|
|
|
"github.com/Unknwon/macaron"
|
|
|
|
"github.com/macaron-contrib/i18n"
|
2014-03-21 10:15:58 +00:00
|
|
|
|
2014-05-05 06:42:52 +00:00
|
|
|
"github.com/gogits/gogs/modules/middleware/binding"
|
2014-03-21 10:15:58 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type AdminEditUserForm struct {
|
2014-05-05 08:40:25 +00:00
|
|
|
Email string `form:"email" binding:"Required;Email;MaxSize(50)"`
|
2014-07-18 02:11:40 +00:00
|
|
|
Passwd string `form:"passwd"`
|
2014-05-05 08:40:25 +00:00
|
|
|
Website string `form:"website" binding:"MaxSize(50)"`
|
|
|
|
Location string `form:"location" binding:"MaxSize(50)"`
|
|
|
|
Avatar string `form:"avatar" binding:"Required;Email;MaxSize(50)"`
|
2014-05-05 09:32:47 +00:00
|
|
|
Active bool `form:"active"`
|
|
|
|
Admin bool `form:"admin"`
|
2014-05-05 08:40:25 +00:00
|
|
|
LoginType int `form:"login_type"`
|
2014-03-21 10:15:58 +00:00
|
|
|
}
|
|
|
|
|
2014-07-26 04:24:27 +00:00
|
|
|
func (f *AdminEditUserForm) Validate(ctx *macaron.Context, errs *binding.Errors, l i18n.Locale) {
|
|
|
|
validate(errs, ctx.Data, f, l)
|
2014-03-21 10:15:58 +00:00
|
|
|
}
|