rDrama/files/assets/js/submit_art.js

23 lines
477 B
JavaScript

function approve_art(t, id) {
postToast(t, `/admin/approve/art/${id}`,
{
"comment": document.getElementById(`${id}-comment`).value,
"author": document.getElementById(`${id}-author`).value,
},
() => {
document.getElementById(`${id}-art`).remove()
}
);
}
function remove_art(t, id) {
postToast(t, `/remove/art/${id}`,
{
"comment": document.getElementById(`${id}-comment`).value,
},
() => {
document.getElementById(`${id}-art`).remove()
}
);
}