Do các vấn đề pháp lý, tôi đã phải xóa một vài vấn đề với nhiều nhận xét của một dự án. Tôi đã làm như sau:
- Xóa tất cả các ý kiến
- chỉnh sửa văn bản về vấn đề này ("Vấn đề này đã bị xóa và chặn")
- Chặn vấn đề
Sao chép dán trên thanh địa chỉ của trình duyệt:
javascript:(function(){ $('.delete-button.octicon.octicon-x.js-comment-delete').each(function(){ href=$(this).attr("href"); if(href!==undefined) { console.log("DELETING: "+href); $.ajax({type:"DELETE",url:href}); } }); firstCommentToedit=$('form.js-comment-update')[0]; $.ajax({ type:"POST", url:firstCommentToedit.action, data:{ _method:$(firstCommentToedit).find('input[name=_method]').val(), "issue[body]":"THIS ISSUE WAS DELETED AND BLOCKED", authenticity_token:$(firstCommentToedit).find('input[name=authenticity_token]').val() } }); lockLink=$('a[href$="/lock"]')[0]; if (lockLink!==undefined) { $.ajax({ type:"POST", url:lockLink.href, data:{_method:$(lockLink).attr("data-method")} }); } setTimeout(function(){window.location=window.location;},3000) })()
Mở rộng:
javascript: (function() {
$('.delete-button.octicon.octicon-x.js-comment-delete').each(function() {
href = $(this).attr("href");
if (href !== undefined) {
console.log("DELETING: " + href);
$.ajax({
type: "DELETE",
url: href
});
}
});
firstCommentToedit = $('form.js-comment-update')[0];
$.ajax({
type: "POST",
url: firstCommentToedit.action,
data: {
_method: $(firstCommentToedit).find('input[name=_method]').val(),
"issue[body]": "THIS ISSUE WAS DELETED AND BLOCKED",
authenticity_token: $(firstCommentToedit).find('input[name=authenticity_token]').val()
}
});
lockLink = $('a[href$="/lock"]')[0];
if (lockLink !== undefined) {
$.ajax({
type: "POST",
url: lockLink.href,
data: {
_method: $(lockLink).attr("data-method")
}
});
}
setTimeout(function() {
window.location = window.location;
}, 3000)
})()
Bất kỳ lý do bạn không chỉ muốn đóng chúng? – Cairnarvon
Tôi đoán anh ấy muốn xóa chúng để anh ấy có thể nhập lại chúng để chúng được liên kết. Và theo như tôi có thể nói, tất cả những gì bạn có thể làm là đóng các vấn đề. Tôi không thể tìm ra cách để loại bỏ chúng. –
Tôi có thể làm điều đó nhưng sau đó nó sẽ nói rằng tôi có 200 vấn đề đóng cửa khi thực sự chỉ có 100 và nó trông giống như một thảm họa với tất cả các tiêu đề vô nghĩa ... –