Sessions 5-7a: 955 tests, deployment ready

This commit is contained in:
Kev
2026-06-08 18:35:13 -04:00
parent 06b82624a2
commit 1fa04dc776
371 changed files with 49366 additions and 955 deletions
+2 -2
View File
@@ -15,7 +15,7 @@ router.get('/', requireAuth, async (req, res) => {
const result = await getAlertsForUser(req.user.id);
return res.json(result);
} catch (err) {
console.error('[BetonBLK] Alerts error:', err.message);
console.error('[VYNDR] Alerts error:', err.message);
return res.status(503).json({ error: 'Alerts temporarily unavailable' });
}
});
@@ -32,7 +32,7 @@ router.patch('/:id/read', requireAuth, async (req, res) => {
}
return res.json(result);
} catch (err) {
console.error('[BetonBLK] Alert update error:', err.message);
console.error('[VYNDR] Alert update error:', err.message);
return res.status(503).json({ error: 'Alert update failed' });
}
});