1
1
mirror of https://github.com/go-gitea/gitea synced 2025-07-22 18:28:37 +00:00

Allow set branch protection in an empty repository (#32095)

This commit is contained in:
Lunny Xiao
2024-09-24 10:06:28 +08:00
committed by GitHub
parent 3f2d8f8730
commit 6eb5950835
3 changed files with 14 additions and 18 deletions

View File

@@ -1069,7 +1069,7 @@ func registerRoutes(m *web.Router) {
m.Combo("/edit").Get(repo_setting.SettingsProtectedBranch).
Post(web.Bind(forms.ProtectBranchForm{}), context.RepoMustNotBeArchived(), repo_setting.SettingsProtectedBranchPost)
m.Post("/{id}/delete", repo_setting.DeleteProtectedBranchRulePost)
}, repo.MustBeNotEmpty)
})
m.Group("/tags", func() {
m.Get("", repo_setting.ProtectedTags)