aboutsummaryrefslogtreecommitdiff
path: root/cmd/web.go
diff options
context:
space:
mode:
authorLunny Xiao <xiaolunwen@gmail.com>2014-05-15 09:55:16 +0800
committerLunny Xiao <xiaolunwen@gmail.com>2014-05-15 09:55:16 +0800
commit839a9bb054618c7f3b04dae0b4f5b5b0fbcf1ee2 (patch)
tree1d47a111c869a6130fd092c1fb683d1ac89251bd /cmd/web.go
parent9d5e827a1e29fb62a0152867a7e1072fd018e1b4 (diff)
parentb70db618547b2167cac7e35be5405fb385512f30 (diff)
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'cmd/web.go')
-rw-r--r--cmd/web.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/web.go b/cmd/web.go
index a7938441..5a0bd167 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.Post("/issues/:index/assignee", repo.UpdateAssignee)
+ r.Post("/issues/:index/milestone", repo.UpdateIssueMilestone)
r.Get("/issues/milestones", repo.Milestones)
r.Get("/issues/milestones/new", repo.NewMilestone)
r.Post("/issues/milestones/new", bindIgnErr(auth.CreateMilestoneForm{}), repo.NewMilestonePost)