diff options
Diffstat (limited to 'modules/forms/repo_branch_form.go')
-rw-r--r-- | modules/forms/repo_branch_form.go | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/forms/repo_branch_form.go b/modules/forms/repo_branch_form.go new file mode 100644 index 0000000000..afb7f8d4f0 --- /dev/null +++ b/modules/forms/repo_branch_form.go @@ -0,0 +1,25 @@ +// Copyright 2017 The Gitea 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 forms + +import ( + "net/http" + + "code.gitea.io/gitea/modules/context" + "code.gitea.io/gitea/modules/middlewares" + + "gitea.com/go-chi/binding" +) + +// NewBranchForm form for creating a new branch +type NewBranchForm struct { + NewBranchName string `binding:"Required;MaxSize(100);GitRefName"` +} + +// Validate validates the fields +func (f *NewBranchForm) Validate(req *http.Request, errs binding.Errors) binding.Errors { + ctx := context.GetContext(req) + return middlewares.Validate(errs, ctx.Data, f, ctx.Locale) +} |