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 /routers | |
parent | a0f9197b4573aa9d4d868637ed00e710a435797b (diff) | |
download | gitea-d1a60e364383b877fd98b853d94b739cb171fe9c.tar.gz gitea-d1a60e364383b877fd98b853d94b739cb171fe9c.zip |
add pull-request and labels page design
Diffstat (limited to 'routers')
-rw-r--r-- | routers/repo/issue.go | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/routers/repo/issue.go b/routers/repo/issue.go index e3a14e193b..b08b06050b 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -1125,3 +1125,11 @@ func IssueGetAttachment(ctx *middleware.Context) { func Issues2(ctx *middleware.Context){ ctx.HTML(200,"repo/issue2/list") } + +func PullRequest2(ctx *middleware.Context){ + ctx.HTML(200,"repo/pr2/list") +} + +func Labels2(ctx *middleware.Context){ + ctx.HTML(200,"repo/issue2/labels") +} |