remove console.logs

This commit is contained in:
2025-07-15 08:03:27 +02:00
parent 873a382f69
commit 5070ac9f7a
2 changed files with 0 additions and 3 deletions

View File

@@ -28,8 +28,6 @@ export function authenticate(user, pass) {
const row = db.prepare(get_usr_stmt).get(user);
let stored_pw = row.pw;
console.log(`+++ ${pass} || ${stored_pw} || ${hashed_pw}`);
if (hashed_pw && hashed_pw === stored_pw) {
token = createToken({ id: user, admin: true });
}