From 67b55eaf0d301b85aaf4da54859a562b0c6c9493 Mon Sep 17 00:00:00 2001 From: KN4CK3R Date: Wed, 21 Dec 2022 23:45:44 +0100 Subject: [PATCH] Allow empty assignees on pull request edit (#22150) Fixes #22140 --- 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 ebb9c0f261f0..a687eabfba34 100644 --- a/routers/api/v1/repo/pull.go +++ b/routers/api/v1/repo/pull.go @@ -491,6 +491,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