summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-08-19 23:14:57 +0800
committerUnknwon <u@gogs.io>2015-08-19 23:14:57 +0800
commit87f5ca8e1f74616d9dc36a5f6fe57023444ed25c (patch)
treea1236ad9a0bb90b6d1968e67ce40bf890ba94f47 /cmd
parenta35911486ffe0cd373662219a8f231b9cf38d84c (diff)
downloadgitea-87f5ca8e1f74616d9dc36a5f6fe57023444ed25c.tar.gz
gitea-87f5ca8e1f74616d9dc36a5f6fe57023444ed25c.zip
able edit issue title
Diffstat (limited to 'cmd')
-rw-r--r--cmd/web.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/web.go b/cmd/web.go
index 05daf558b0..1511d5760b 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -467,7 +467,7 @@ func runWeb(ctx *cli.Context) {
m.Combo("/:index/comments").Post(bindIgnErr(auth.CreateCommentForm{}), repo.NewComment)
m.Group("/:index", func() {
- m.Post("", bindIgnErr(auth.CreateIssueForm{}), repo.UpdateIssue)
+ m.Post("/title", repo.UpdateIssueTitle)
m.Post("/label", repo.UpdateIssueLabel)
m.Post("/milestone", repo.UpdateIssueMilestone)
m.Post("/assignee", repo.UpdateIssueAssignee)