Skip to content

Commit e76b3f7

Browse files
getting the tag list does not require being signed in (#24413) (#24416)
Backport #24413 by @earl-warren Fixes: https://codeberg.org/forgejo/forgejo/issues/681 Co-authored-by: Earl Warren <[email protected]>
1 parent 4bc6bfb commit e76b3f7

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
@@ -1226,7 +1226,7 @@ func RegisterRoutes(m *web.Route) {
12261226
}, repo.MustBeNotEmpty, reqRepoCodeReader, context.RepoRefByType(context.RepoRefTag, true))
12271227
m.Post("/tags/delete", repo.DeleteTag, reqSignIn,
12281228
repo.MustBeNotEmpty, context.RepoMustNotBeArchived(), reqRepoCodeWriter, context.RepoRef())
1229-
}, reqSignIn, context.RepoAssignment, context.UnitTypes())
1229+
}, ignSignIn, context.RepoAssignment, context.UnitTypes())
12301230

12311231
// Releases
12321232
m.Group("/{username}/{reponame}", func() {

0 commit comments

Comments
 (0)