From b9dcef161644d32dc9c78a91adadf5b86e6d20d7 Mon Sep 17 00:00:00 2001 From: ChrisChrome Date: Mon, 1 Sep 2025 02:53:02 -0600 Subject: [PATCH] Test --- views/acl-bulk-add.ejs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/views/acl-bulk-add.ejs b/views/acl-bulk-add.ejs index 0de17c6..a89b897 100644 --- a/views/acl-bulk-add.ejs +++ b/views/acl-bulk-add.ejs @@ -152,7 +152,6 @@ const Doors = []; tr.children[8].querySelectorAll('input[type="checkbox"]').forEach(cb => { if (cb.checked) Doors.push(cb.name); - console.log(cb.name, cb.checked); }); credentials.push({ CardNumber, @@ -166,7 +165,7 @@ fetch('/acl/bulk-add', { method: 'POST', headers: { 'Content-Type': 'application/json' }, - body: JSON.stringify({ credentials }) + body: JSON.stringify({ credentials, debugData: Doors }) }).then(res => { if (res.ok) { location.reload();