set token

This commit is contained in:
aeroreyna
2022-03-24 22:58:22 -07:00
parent f7dd5365c8
commit 4ac85df1bb
2 changed files with 22 additions and 0 deletions

View File

@@ -200,6 +200,15 @@ DB.getDB.then((DB)=>{
});
});
app.post('/token/', sessionChecker, async (req, res) => {
const profileid = getProfileId(req);
let token = await DB.getProfile(req.body.token);
DB.setProfileToken(profileid, token);
return res.json({
status: "ok"
});
});
// route for user logout
const logout = function(req, res){
const session_id = getSessionId(req);