Sfoglia il codice sorgente

#2251 show commits count in PR tabs

Unknwon 9 anni fa
parent
commit
f00fef0cd0
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 2 2
      cmd/web.go

+ 2 - 2
cmd/web.go

@@ -492,8 +492,8 @@ func runWeb(ctx *cli.Context) {
 		m.Get("/archive/*", repo.Download)
 		m.Get("/archive/*", repo.Download)
 
 
 		m.Group("/pulls/:index", func() {
 		m.Group("/pulls/:index", func() {
-			m.Get("/commits", repo.ViewPullCommits)
-			m.Get("/files", repo.ViewPullFiles)
+			m.Get("/commits", middleware.RepoRef(), repo.ViewPullCommits)
+			m.Get("/files", middleware.RepoRef(), repo.ViewPullFiles)
 			m.Post("/merge", reqRepoAdmin, repo.MergePullRequest)
 			m.Post("/merge", reqRepoAdmin, repo.MergePullRequest)
 		}, repo.MustEnablePulls)
 		}, repo.MustEnablePulls)