Merge pull request #1903 from camlafit/patch-1

A missing / to provide a correct endpoint
This commit is contained in:
Andrey Nering 2017-06-07 15:50:13 -03:00 committed by GitHub
commit 4bc7240eee
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)
})