diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2014-05-15 09:55:16 +0800 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2014-05-15 09:55:16 +0800 |
commit | 839a9bb054618c7f3b04dae0b4f5b5b0fbcf1ee2 (patch) | |
tree | 1d47a111c869a6130fd092c1fb683d1ac89251bd /cmd/web.go | |
parent | 9d5e827a1e29fb62a0152867a7e1072fd018e1b4 (diff) | |
parent | b70db618547b2167cac7e35be5405fb385512f30 (diff) |
Merge branch 'dev' of github.com:gogits/gogs into dev
Diffstat (limited to 'cmd/web.go')
-rw-r--r-- | cmd/web.go | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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) |