aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorFuXiaoHei <fuxiaohei@hexiaz.com>2014-05-09 22:33:07 +0800
committerFuXiaoHei <fuxiaohei@hexiaz.com>2014-05-09 22:33:07 +0800
commit2eabeba6b76d906664defe4392a7ca2640128712 (patch)
tree9c83ac41f4f58db3eb303f695755f43e51ba0cf2 /cmd
parent045c21de4fc318abcaa80e5aea1f7d6a8ab8ac00 (diff)
downloadgitea-2eabeba6b76d906664defe4392a7ca2640128712.tar.gz
gitea-2eabeba6b76d906664defe4392a7ca2640128712.zip
finish milestone add page
Diffstat (limited to 'cmd')
-rw-r--r--cmd/web.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go
index 897f6b955a..6ff819f62b 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -185,6 +185,7 @@ func runWeb(*cli.Context) {
r.Post("/issues/new", bindIgnErr(auth.CreateIssueForm{}), repo.CreateIssuePost)
r.Post("/issues/:index", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
r.Get("/issues/milestones", repo.Milestones)
+ r.Get("/issues/milestones/new", repo.NewMilestones)
r.Post("/comment/:action", repo.Comment)
r.Get("/releases/new", repo.ReleasesNew)
}, reqSignIn, middleware.RepoAssignment(true))