rDrama/files/assets/js/submit_hats.js

23 lines
495 B
JavaScript

function approve_hat(t, name) {
postToast(t, `/admin/approve/hat/${name}`,
{
"description": document.getElementById(`${name}-description`).value,
"name": document.getElementById(`${name}-name`).value,
"price": document.getElementById(`${name}-price`).value,
},
() => {
document.getElementById(`${name}-hat`).remove()
}
);
}
function remove_hat(t, name) {
postToast(t, `/remove/hat/${name}`,
{
},
() => {
document.getElementById(`${name}-hat`).remove()
}
);
}