diff options
author | Julien Dessaux | 2022-11-19 18:41:35 +0100 |
---|---|---|
committer | Julien Dessaux | 2022-11-19 18:41:35 +0100 |
commit | 54e06aa44a3134dfc42db3e4b473abf5e181fc42 (patch) | |
tree | 35c2358e0cbe47d21972535b8485aa0fd9756b8d /controllers/root/logout.js | |
parent | Updated dependencies and fixed lint errors (diff) | |
download | jeux-de-mots-54e06aa44a3134dfc42db3e4b473abf5e181fc42.tar.gz jeux-de-mots-54e06aa44a3134dfc42db3e4b473abf5e181fc42.tar.bz2 jeux-de-mots-54e06aa44a3134dfc42db3e4b473abf5e181fc42.zip |
cleaned up the distinction between routes and controllers
Diffstat (limited to '')
-rw-r--r-- | controllers/root/logout.js | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/controllers/root/logout.js b/controllers/root/logout.js new file mode 100644 index 0000000..078df9a --- /dev/null +++ b/controllers/root/logout.js @@ -0,0 +1,7 @@ +export function logout_get(req, res) { + if (req.session.user !== undefined) { + res.clearCookie("JDMSessionId"); + req.session.destroy(); + } + return res.redirect(302, "/"); +} |