From 5d2676089e12a74d9fb599572854cb2c8ec848f9 Mon Sep 17 00:00:00 2001 From: guillep2k <18600385+guillep2k@users.noreply.github.com> Date: Tue, 3 Sep 2019 00:39:53 -0300 Subject: [PATCH] Add change title notification for issues (#8064) --- routers/repo/issue.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 3904d29532..12c38b8620 100644 --- a/routers/repo/issue.go +++ b/routers/repo/issue.go @@ -1047,11 +1047,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, })