fix: fix repository quota

This commit is contained in:
tdurieux
2021-09-08 15:57:20 +02:00
parent fe7c953b15
commit 1fe920da79
+1 -1
View File
@@ -45,7 +45,7 @@ router.get("/quota", async (req: express.Request, res: express.Response) => {
total: 0, total: 0,
}, },
repository: { repository: {
used: repositories.length, used: repositories.filter((f) => f.status == "ready").length,
total: 20, total: 20,
}, },
}); });