tonyb
12/21/2022, 9:22 PMuseSessionContext
after I log out this still shows as active, even though my protected route shows 401
to log out I am calling: await req.session!.revokeSession()
I have a workaround but not sure if that is expectedtonyb
12/21/2022, 9:58 PM// This will delete the session from the db and from the frontend (cookies)
await req.session!.revokeSession();
nkshah2
12/22/2022, 4:35 AMporcellus
12/22/2022, 9:17 AMrevokeSession
?