mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Fix API for branches with slashes (#2096)
This commit is contained in:
		@@ -364,7 +364,7 @@ func RegisterRoutes(m *macaron.Macaron) {
 | 
			
		||||
					Post(bind(api.CreateForkOption{}), repo.CreateFork)
 | 
			
		||||
				m.Group("/branches", func() {
 | 
			
		||||
					m.Get("", repo.ListBranches)
 | 
			
		||||
					m.Get("/:branchname", repo.GetBranch)
 | 
			
		||||
					m.Get("/*", context.RepoRef(), repo.GetBranch)
 | 
			
		||||
				})
 | 
			
		||||
				m.Group("/keys", func() {
 | 
			
		||||
					m.Combo("").Get(repo.ListDeployKeys).
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user