// Copyright 2021 The Gitea Authors. All rights reserved. // SPDX-License-Identifier: MIT package forms import ( "net/http" "code.gitea.io/gitea/modules/web/middleware" "code.gitea.io/gitea/services/context" "gitea.com/go-chi/binding" ) // ProtectTagForm form for changing protected tag settings type ProtectTagForm struct { NamePattern string `binding:"Required;GlobOrRegexPattern"` AllowlistUsers string AllowlistTeams string } // Validate validates the fields func (f *ProtectTagForm) Validate(req *http.Request, errs binding.Errors) binding.Errors { ctx := context.GetValidateContext(req) return middleware.Validate(errs, ctx.Data, f, ctx.Locale) }