[API] Load issue attributes when editing an issue (#6723) (#6725)

release/v1.8
John Olheiser 5 years ago committed by Lauris BH
parent 799f5e05c9
commit b1cb52e477

@ -291,6 +291,12 @@ func EditIssue(ctx *context.APIContext, form api.EditIssueOption) {
}
issue.Repo = ctx.Repo.Repository
err = issue.LoadAttributes()
if err != nil {
ctx.Error(500, "LoadAttributes", err)
return
}
if !issue.IsPoster(ctx.User.ID) && !ctx.Repo.CanWrite(models.UnitTypeIssues) {
ctx.Status(403)
return

Loading…
Cancel
Save