Browse Source

Add change title notification for issues (#8061)

tags/v1.10.0-rc1
guillep2k 6 years ago committed by techknowlogick
parent
commit
8ae96a37ce
  1. 3
      routers/repo/issue.go

3
routers/repo/issue.go

@ -1045,11 +1045,14 @@ func UpdateIssueTitle(ctx *context.Context) {
return
}
oldTitle := issue.Title
if err := issue.ChangeTitle(ctx.User, title); err != nil {
ctx.ServerError("ChangeTitle", err)
return
}
notification.NotifyIssueChangeTitle(ctx.User, issue, oldTitle)
ctx.JSON(200, map[string]interface{}{
"title": issue.Title,
})

Loading…
Cancel
Save