forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/assets/js/admin/banned_domains.js

9 lines
147 B
JavaScript
Raw Normal View History

function unbanDomain(t, domain) {
2023-08-12 10:49:23 +00:00
postToast(
t,
`/admin/unban_domain/${domain}`,
{},
() => {t.parentElement.parentElement.remove()}
);
}