forked from MarseyWorld/MarseyWorld
32 lines
761 B
JavaScript
32 lines
761 B
JavaScript
|
function removePost(t,post_id,button1,button2,cls) {
|
||
|
url="/remove_post/"+post_id
|
||
|
|
||
|
post_toast(t,url,button1,button2,cls)
|
||
|
|
||
|
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
|
||
|
|
||
|
post_toast(t,url,button1,button2,cls)
|
||
|
|
||
|
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");
|
||
|
}
|
||
|
}
|