mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-08 18:04:14 +01:00
#2251 show commits count in PR tabs
This commit is contained in:
parent
2d3ecbe5b2
commit
f00fef0cd0
1 changed files with 2 additions and 2 deletions
|
@ -492,8 +492,8 @@ func runWeb(ctx *cli.Context) {
|
|||
m.Get("/archive/*", repo.Download)
|
||||
|
||||
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)
|
||||
}, repo.MustEnablePulls)
|
||||
|
||||
|
|
Loading…
Reference in a new issue