mirror of
https://github.com/sudoxnym/habitica-self-host.git
synced 2026-07-26 16:53:52 +00:00
17 lines
299 B
JavaScript
17 lines
299 B
JavaScript
|
|
let api = {};
|
||
|
|
|
||
|
|
// Internal authentication routes
|
||
|
|
|
||
|
|
// Logout the user from the website.
|
||
|
|
api.logout = {
|
||
|
|
method: 'GET',
|
||
|
|
url: '/logout',
|
||
|
|
async handler (req, res) {
|
||
|
|
if (req.logout) req.logout(); // passportjs method
|
||
|
|
req.session = null;
|
||
|
|
res.redirect('/');
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
module.exports = api;
|