Feature/api paramyxrx #25

Merged
mattdimegs merged 10 commits from feature/api-paramyxrx into main 2026-01-18 06:26:01 +00:00
Showing only changes of commit 7698b794e5 - Show all commits

View file

@ -30,7 +30,7 @@ app.get("/api", (req, res) => {
app.use('/api', apiRouter);
app.get('/db-health', async (req, res) => {
app.get('/api/db-health', async (req, res) => {
try {
const result = await shiftRunQuery('SELECT NOW()');
res.json({ connected: true, time: result.rows[0].now });