2014-03-22 21:00:46 +01: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 (
|
|
|
|
"net/http"
|
|
|
|
"reflect"
|
|
|
|
|
2014-03-30 18:11:28 +02:00
|
|
|
"github.com/go-martini/martini"
|
2014-03-22 21:00:46 +01:00
|
|
|
|
|
|
|
"github.com/gogits/gogs/modules/base"
|
2014-05-05 08:42:52 +02:00
|
|
|
"github.com/gogits/gogs/modules/middleware/binding"
|
2014-03-22 21:00:46 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
type CreateIssueForm struct {
|
2014-03-25 17:12:27 +01:00
|
|
|
IssueName string `form:"title" binding:"Required;MaxSize(50)"`
|
|
|
|
MilestoneId int64 `form:"milestoneid"`
|
2014-03-22 21:00:46 +01:00
|
|
|
AssigneeId int64 `form:"assigneeid"`
|
|
|
|
Labels string `form:"labels"`
|
|
|
|
Content string `form:"content"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *CreateIssueForm) Name(field string) string {
|
|
|
|
names := map[string]string{
|
2014-03-25 17:12:27 +01:00
|
|
|
"IssueName": "Issue name",
|
2014-03-22 21:00:46 +01:00
|
|
|
}
|
|
|
|
return names[field]
|
|
|
|
}
|
|
|
|
|
2014-05-05 08:42:52 +02:00
|
|
|
func (f *CreateIssueForm) Validate(errors *binding.BindingErrors, req *http.Request, context martini.Context) {
|
2014-03-22 21:00:46 +01:00
|
|
|
data := context.Get(reflect.TypeOf(base.TmplData{})).Interface().(base.TmplData)
|
|
|
|
validate(errors, data, f)
|
|
|
|
}
|