fix bug in resource get

Signed-off-by: Arthur Lu <learthurgo@gmail.com>
This commit is contained in:
Arthur Lu 2023-04-03 21:53:11 +00:00
parent 8862144524
commit 0c6fc5ae1f

View File

@ -44,13 +44,14 @@ app.post("/api/proxmox/*", async (req, res) => { // proxy endpoint for POST prox
}); });
app.get("/api/user/resources", async(req, res) => { app.get("/api/user/resources", async(req, res) => {
let auth = await checkAuth(req.cookies, vmpath); let auth = await checkAuth(req.cookies);
if (!auth) { if (!auth) {
res.status(401).send({auth: auth}); res.status(401).send({auth: auth});
return; return;
} }
return getResources(req.cookies.username); res.status(200).send({resources: getResources(req.cookies.username)});
return;
}); });
app.post("/api/disk/detach", async (req, res) => { app.post("/api/disk/detach", async (req, res) => {