diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-11-17 23:07:34 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-11-17 23:07:34 +0800 |
commit | d1a60e364383b877fd98b853d94b739cb171fe9c (patch) | |
tree | db3bddccb05f18a4be0b1a2a39e1415b66756c11 /cmd/web.go | |
parent | a0f9197b4573aa9d4d868637ed00e710a435797b (diff) | |
download | gitea-d1a60e364383b877fd98b853d94b739cb171fe9c.tar.gz gitea-d1a60e364383b877fd98b853d94b739cb171fe9c.zip |
add pull-request and labels page design
Diffstat (limited to 'cmd/web.go')
-rw-r--r-- | cmd/web.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go index a99ee4a1f6..5b81537f79 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -387,6 +387,8 @@ func runWeb(*cli.Context) { m.Get("/branches", repo.Branches) m.Get("/archive/*", repo.Download) m.Get("/issues2/", repo.Issues2) + m.Get("/pulls2/", repo.PullRequest2) + m.Get("/labels2/",repo.Labels2) m.Group("", func() { m.Get("/src/*", repo.Home) |