gogs/pkg/form/admin.go

44 lines
1.3 KiB
Go
Raw Normal View History

2014-03-21 14:15:58 +04: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 form
2014-03-21 14:15:58 +04:00
import (
2015-10-16 04:28:12 +03:00
"github.com/go-macaron/binding"
"gopkg.in/macaron.v1"
2014-03-21 14:15:58 +04:00
)
type AdminCrateUser struct {
LoginType string `binding:"Required"`
LoginName string
UserName string `binding:"Required;AlphaDashDot;MaxSize(35)"`
Email string `binding:"Required;Email;MaxSize(254)"`
Password string `binding:"MaxSize(255)"`
SendNotify bool
}
func (f *AdminCrateUser) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
return validate(errs, ctx.Data, f, ctx.Locale)
}
type AdminEditUser struct {
LoginType string `binding:"Required"`
LoginName string
FullName string `binding:"MaxSize(100)"`
Email string `binding:"Required;Email;MaxSize(254)"`
Password string `binding:"MaxSize(255)"`
Website string `binding:"MaxSize(50)"`
Location string `binding:"MaxSize(50)"`
2015-12-10 20:37:53 +03:00
MaxRepoCreation int
Active bool
Admin bool
AllowGitHook bool
AllowImportLocal bool
2016-07-16 05:22:16 +03:00
ProhibitLogin bool
2014-03-21 14:15:58 +04:00
}
func (f *AdminEditUser) Validate(ctx *macaron.Context, errs binding.Errors) binding.Errors {
2014-10-15 19:19:20 +04:00
return validate(errs, ctx.Data, f, ctx.Locale)
2014-03-21 14:15:58 +04:00
}