A missing / to provide a correct endpoint

solve #1899
This commit is contained in:
camlafit 2017-06-07 17:57:28 +02:00 committed by GitHub
parent d9a8eff2de
commit 952cb8046f
1 changed files with 1 additions and 1 deletions

View File

@ -487,7 +487,7 @@ func RegisterRoutes(m *macaron.Macaron) {
})
m.Group("/repos", func() {
m.Get("", org.GetTeamRepos)
m.Combo(":orgname/:reponame").
m.Combo("/:orgname/:reponame").
Put(org.AddTeamRepository).
Delete(org.RemoveTeamRepository)
})