diff options
author | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-05-12 21:51:22 +0800 |
---|---|---|
committer | FuXiaoHei <fuxiaohei@hexiaz.com> | 2014-05-12 21:51:22 +0800 |
commit | 1769bb2f26aa26ae7476cef8eb97272f44aa28b4 (patch) | |
tree | c1917d448a5740482978519a69738a01cc135e4d /cmd | |
parent | 3fe87cba85de888a00edbf4c4d2a182910e1ddec (diff) | |
download | gitea-1769bb2f26aa26ae7476cef8eb97272f44aa28b4.tar.gz gitea-1769bb2f26aa26ae7476cef8eb97272f44aa28b4.zip |
add milestone edit ui
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 9a42b27a11..d7a760405c 100644 --- a/cmd/web.go +++ b/cmd/web.go @@ -187,6 +187,7 @@ func runWeb(*cli.Context) { r.Post("/issues/:index/assignee", repo.UpdateAssignee) r.Get("/issues/milestones", repo.Milestones) r.Get("/issues/milestones/new", repo.NewMilestones) + r.Get("/issues/milestones/edit", repo.UpdateMilestones) r.Post("/comment/:action", repo.Comment) r.Get("/releases/new", repo.ReleasesNew) }, reqSignIn, middleware.RepoAssignment(true)) |