From 48450939c712f10de858fcb4a3e59adc7058d673 Mon Sep 17 00:00:00 2001 From: KN4CK3R Date: Thu, 22 Dec 2022 13:40:54 +0100 Subject: [PATCH] Allow empty assignees on pull request edit (#22150) (#22213) Backport of #22150 Co-authored-by: Lunny Xiao --- routers/api/v1/repo/pull.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/routers/api/v1/repo/pull.go b/routers/api/v1/repo/pull.go index 50d2c9484f..07ee89e6c3 100644 --- a/routers/api/v1/repo/pull.go +++ b/routers/api/v1/repo/pull.go @@ -488,6 +488,11 @@ func EditPullRequest(ctx *context.APIContext) { issue := pr.Issue issue.Repo = ctx.Repo.Repository + if err := issue.LoadAttributes(ctx); err != nil { + ctx.Error(http.StatusInternalServerError, "LoadAttributes", err) + return + } + if !issue.IsPoster(ctx.Doer.ID) && !ctx.Repo.CanWrite(unit.TypePullRequests) { ctx.Status(http.StatusForbidden) return