mirror of
				https://github.com/go-gitea/gitea
				synced 2025-11-03 21:08:25 +00:00 
			
		
		
		
	Fix bug for code search if code is disabled (#25173)
Fix https://github.com/go-gitea/gitea/pull/24189/files#r1224144768
This commit is contained in:
		@@ -356,7 +356,12 @@ func registerRoutes(m *web.Route) {
 | 
			
		||||
		m.Get("/users", explore.Users)
 | 
			
		||||
		m.Get("/users/sitemap-{idx}.xml", sitemapEnabled, explore.Users)
 | 
			
		||||
		m.Get("/organizations", explore.Organizations)
 | 
			
		||||
		m.Get("/code", reqUnitAccess(unit.TypeCode, perm.AccessModeRead), explore.Code)
 | 
			
		||||
		m.Get("/code", func(ctx *context.Context) {
 | 
			
		||||
			if unit.TypeCode.UnitGlobalDisabled() {
 | 
			
		||||
				ctx.NotFound(unit.TypeCode.String(), nil)
 | 
			
		||||
				return
 | 
			
		||||
			}
 | 
			
		||||
		}, explore.Code)
 | 
			
		||||
		m.Get("/topics/search", explore.TopicSearch)
 | 
			
		||||
	}, ignExploreSignIn)
 | 
			
		||||
	m.Group("/issues", func() {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user