This commit is contained in:
Christopher Cookman 2025-09-01 03:03:31 -06:00
parent cdf5d860f3
commit 4036da611c
2 changed files with 2 additions and 0 deletions

View file

@ -237,6 +237,7 @@ router.post('/bulk-add', async (req, res) => { // Process bulk add of ACL entrie
} catch (err) {
log.error(`Bulk add error for card ${cardNumber}: ${err}`);
results.push({ cardNumber, status: 'error', error: 'Internal server error' });
res.status(500);
}
}

View file

@ -162,6 +162,7 @@
});
}
});
fetch('/acl/bulk-add', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },