mirror of
https://gitlab.com/wgp/dougal/software.git
synced 2025-12-06 12:57:08 +00:00
9 lines
129 B
JavaScript
9 lines
129 B
JavaScript
|
|
async function logout (req, res, next) {
|
|
res.clearCookie("JWT");
|
|
res.status(204).send();
|
|
next();
|
|
}
|
|
|
|
module.exports = logout;
|