bench-forgejo/modules/auth/setting.go

34 lines
879 B
Go
Raw Normal View History

2014-03-11 06:18:58 +05:30
// 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 (
"net/http"
"reflect"
2014-03-30 21:41:28 +05:30
"github.com/go-martini/martini"
2014-03-11 06:18:58 +05:30
"github.com/gogits/gogs/modules/base"
2014-05-05 12:12:52 +05:30
"github.com/gogits/gogs/modules/middleware/binding"
2014-03-11 06:18:58 +05:30
)
type AddSSHKeyForm struct {
KeyName string `form:"keyname" binding:"Required"`
KeyContent string `form:"key_content" binding:"Required"`
}
func (f *AddSSHKeyForm) Name(field string) string {
names := map[string]string{
"KeyName": "SSH key name",
"KeyContent": "SSH key content",
}
return names[field]
}
2014-05-05 12:12:52 +05:30
func (f *AddSSHKeyForm) Validate(errors *binding.BindingErrors, req *http.Request, context martini.Context) {
2014-03-11 06:18:58 +05:30
data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
validate(errors, data, f)
}