Add change title notification for issues (#8061)

pull/8062/head^2
guillep2k 2019-09-02 23:35:31 -03:00 committed by techknowlogick
parent ee11974719
commit 8ae96a37ce
1 changed files with 3 additions and 0 deletions

View File

@ -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,
})