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

20 lines
270 B
JavaScript
Raw Normal View History

2023-02-24 19:29:07 +00:00
function approve_membership(t, url) {
postToast(t, url,
{
},
() => {
t.parentElement.innerHTML = formatDate(new Date());
}
);
}
function reject_membership(t, url) {
postToast(t, url,
{
},
() => {
t.parentElement.parentElement.remove();
}
);
}