Revert "fix POST /{username}/{reponame}/{type:issues|pulls}/{index}/content-history/soft-delete"

This reverts commit 2a8cb675ca.
This commit is contained in:
Earl Warren 2023-12-12 15:03:20 +01:00
parent d6ae79f78f
commit ee1655d5b0
No known key found for this signature in database
GPG key ID: 0579CB2928A78A00

View file

@ -198,19 +198,11 @@ func SoftDeleteContentHistory(ctx *context.Context) {
log.Error("can not get comment for issue content history %v. err=%v", historyID, err)
return
}
if comment.IssueID != issue.ID {
ctx.NotFound("CompareRepoID", issues_model.ErrCommentNotExist{})
return
}
}
if history, err = issues_model.GetIssueContentHistoryByID(ctx, historyID); err != nil {
log.Error("can not get issue content history %v. err=%v", historyID, err)
return
}
if history.IssueID != issue.ID {
ctx.NotFound("CompareRepoID", issues_model.ErrCommentNotExist{})
return
}
canSoftDelete := canSoftDeleteContentHistory(ctx, issue, comment, history)
if !canSoftDelete {