1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-06-29 01:45:30 +00:00

Update routers/web/web.go

Co-authored-by: silverwind <me@silverwind.io>
This commit is contained in:
wxiaoguang 2024-06-18 06:21:41 +08:00 committed by GitHub
parent 4f38c75385
commit 5ab276106c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -487,7 +487,7 @@ func registerRoutes(m *web.Route) {
m.Get("/organizations", explore.Organizations)
m.Get("/code", func(ctx *context.Context) {
if unit.TypeCode.UnitGlobalDisabled() {
ctx.NotFound("Rep unit code is disabled", nil)
ctx.NotFound("Repo unit code is disabled", nil)
return
}
}, explore.Code)