ваше сообщение коммита

This commit is contained in:
2025-05-22 16:24:39 +03:00
parent 5e231e547d
commit 0c7b312aff
43 changed files with 9310 additions and 1295 deletions

View File

@@ -1,7 +1,7 @@
const db = require('../db');
async function getAllAuthTokens() {
const { rows } = await db.query('SELECT * FROM auth_tokens ORDER BY id');
const { rows } = await db.getQuery()('SELECT * FROM auth_tokens ORDER BY id');
return rows;
}