Skip to content

Commit 9cf721e

Browse files
authored
getting the tag list does not require being signed in (#24413)
Fixes: https://codeberg.org/forgejo/forgejo/issues/681
1 parent 0bd05a9 commit 9cf721e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routers/web/web.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1093,7 +1093,7 @@ func registerRoutes(m *web.Route) {
10931093
repo.MustBeNotEmpty, reqRepoCodeReader, context.RepoRefByType(context.RepoRefTag, true))
10941094
m.Post("/tags/delete", repo.DeleteTag, reqSignIn,
10951095
repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoCodeWriter, context.RepoRef())
1096-
}, reqSignIn, context.RepoAssignment, context.UnitTypes())
1096+
}, ignSignIn, context.RepoAssignment, context.UnitTypes())
10971097

10981098
// Releases
10991099
m.Group("/{username}/{reponame}", func() {

0 commit comments

Comments
 (0)