in htdocs/js/boxer.js [300:308]
async function lock_account(asf_id) {
let res = await GET('api/invite.json?lock=' + asf_id);
if (res.okay === true) {
alert("Account locked and unlinked");
location.reload();
} else {
alert(res.message);
}
}