diff options
author | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-09-27 19:03:07 +0800 |
---|---|---|
committer | fuxiaohei <fuxiaohei@vip.qq.com> | 2014-09-27 19:03:07 +0800 |
commit | 7d48f811f16d3565f161a44e4e98c451cf6c857e (patch) | |
tree | 8855c895060e3fec25777dbc2fbe0f9fa09cdbb8 /cmd | |
parent | e3a27aeb25f5de7daaf279ec049830628e2cc3a6 (diff) | |
download | gitea-7d48f811f16d3565f161a44e4e98c451cf6c857e.tar.gz gitea-7d48f811f16d3565f161a44e4e98c451cf6c857e.zip |
add issue router for new issue page ui preview
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go index 8a87f86bb1..fc417618eb 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -345,6 +345,7 @@ func runWeb(*cli.Context) { r.Get("/pulls", repo.Pulls) r.Get("/branches", repo.Branches) r.Get("/archive/*", repo.Download) + r.Get("/issues2/",repo.Issues2) }, ignSignIn, middleware.RepoAssignment(true)) m.Group("/:username/:reponame", func(r *macaron.Router) { |