|
|
|
@ -721,8 +721,8 @@ func deleteIssueComment(ctx *context.APIContext) {
|
|
|
|
if !ctx.IsSigned || (ctx.Doer.ID != comment.PosterID && !ctx.Repo.CanWriteIssuesOrPulls(comment.Issue.IsPull)) {
|
|
|
|
if !ctx.IsSigned || (ctx.Doer.ID != comment.PosterID && !ctx.Repo.CanWriteIssuesOrPulls(comment.Issue.IsPull)) {
|
|
|
|
ctx.Status(http.StatusForbidden)
|
|
|
|
ctx.Status(http.StatusForbidden)
|
|
|
|
return
|
|
|
|
return
|
|
|
|
} else if comment.Type != issues_model.CommentTypeComment {
|
|
|
|
} else if !comment.Type.HasContentSupport() {
|
|
|
|
ctx.Status(http.StatusNoContent)
|
|
|
|
ctx.Status(http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|