Use refactored database API in QC executable

This commit is contained in:
D. Berge
2023-09-09 16:42:30 +02:00
parent e6319172d8
commit 04d6cbafe3

View File

@@ -56,7 +56,7 @@ async function getProjectQCConfig (projectId) {
async function main () {
// Fetch list of projects
console.log("GET PROJECTS");
const projects = await project.list();
const projects = await project.get();
console.log("PROJECTS", projects);
for (const proj of projects) {