Browse Source

add route

tags/v1.21.12.1
lewis 3 years ago
parent
commit
1fe68bf63f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      routers/routes/routes.go

+ 1
- 1
routers/routes/routes.go View File

@@ -795,7 +795,7 @@ func RegisterRoutes(m *macaron.Macaron) {
// Grouping for those endpoints not requiring authentication
m.Group("/:username/:reponame", func() {
m.Get("/contributors", repo.Contributors)
m.Get("/contributors/", repo.ContributorsAPI)
m.Get("/contributors/list", repo.ContributorsAPI)
m.Group("/milestone", func() {
m.Get("/:id", repo.MilestoneIssuesAndPulls)
}, reqRepoIssuesOrPullsReader, context.RepoRef())


Loading…
Cancel
Save