implemented #1721: see users who forked/starred/watched a repository
This commit is contained in:
parent
e0a099ec11
commit
c8aa9c6cb1
10 changed files with 476 additions and 0 deletions
|
@ -514,6 +514,9 @@ func runWeb(ctx *cli.Context) {
|
|||
m.Get("/labels/", repo.RetrieveLabels, repo.Labels)
|
||||
m.Get("/milestones", repo.Milestones)
|
||||
m.Get("/branches", repo.Branches)
|
||||
m.Get("/stars/?:index", middleware.RepoRef(), repo.Stars)
|
||||
m.Get("/watchers/?:index", middleware.RepoRef(), repo.Watchers)
|
||||
m.Get("/forks", middleware.RepoRef(), repo.Forks)
|
||||
m.Get("/archive/*", repo.Download)
|
||||
|
||||
m.Group("/pulls/:index", func() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue