forked from NYANDEV/forgejo
Fix API for branches with slashes (#2096)
This commit is contained in:
parent
fea902adc8
commit
f99489d5c5
4 changed files with 54 additions and 2 deletions
|
@ -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).
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue