forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/submission_admin.js

32 lines
759 B
JavaScript
Raw Normal View History

2022-10-23 16:24:17 +00:00
function removePost(t,post_id,button1,button2,cls) {
url="/remove_post/"+post_id
postToast(t,url,button1,button2,cls)
2022-10-23 16:24:17 +00:00
if (window.location.pathname == '/admin/reported/posts')
{
document.getElementById("flaggers-"+post_id).remove()
document.getElementById("post-"+post_id).remove()
}
else
{
document.getElementById("post-"+post_id).classList.add("banned");
}
};
function approvePost(t,post_id,button1,button2,cls) {
url="/approve_post/"+post_id
postToast(t,url,button1,button2,cls)
2022-10-23 16:24:17 +00:00
if (window.location.pathname == '/admin/reported/posts')
{
document.getElementById("flaggers-"+post_id).remove()
document.getElementById("post-"+post_id).remove()
}
else
{
document.getElementById("post-"+post_id).classList.remove("banned");
}
}