From 5154875f4f15aa1664418e28564ca129fb8175e7 Mon Sep 17 00:00:00 2001 From: Guillermo Prandi Date: Mon, 2 Sep 2019 21:06:21 -0300 Subject: [PATCH] Add change title notification for issues --- routers/repo/issue.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/routers/repo/issue.go b/routers/repo/issue.go index 564a0eab096a..a865bd0ad11e 100644 --- a/routers/repo/issue.go +++ b/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, })