diff options
author | Unknwon <u@gogs.io> | 2015-08-19 23:14:57 +0800 |
---|---|---|
committer | Unknwon <u@gogs.io> | 2015-08-19 23:14:57 +0800 |
commit | 87f5ca8e1f74616d9dc36a5f6fe57023444ed25c (patch) | |
tree | a1236ad9a0bb90b6d1968e67ce40bf890ba94f47 /cmd | |
parent | a35911486ffe0cd373662219a8f231b9cf38d84c (diff) | |
download | gitea-87f5ca8e1f74616d9dc36a5f6fe57023444ed25c.tar.gz gitea-87f5ca8e1f74616d9dc36a5f6fe57023444ed25c.zip |
able edit issue title
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/web.go | 2 |
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) |