give myself something to do tomorrow

Matchmaking base
This commit is contained in:
2025-03-25 23:08:28 -04:00
parent 474e4ddfef
commit e2ae95f6a3
3 changed files with 21 additions and 9 deletions

View File

@@ -36,7 +36,7 @@ route.router.post("/create",
value: await newAcc.export(),
});
},
);
route.router.get("/bulk",
@@ -59,11 +59,7 @@ route.router.get("/bulk",
);
return;
} else {
rs.json(
[await Profile.getExportAccount(id)].filter((val) =>
val !== null
),
);
rs.json([await Profile.getExportAccount(id)].filter((val) => val !== null));
return;
}

View File

@@ -21,6 +21,10 @@ route.router.post('/login',
(_rq, rs) => {
// temporary
rs.sendStatus(200);
// check for existing login
// set login lock
// init presence
// use device_class from token request
},
)