Skip to content

Instantly share code, notes, and snippets.

@tonyspiro
Created July 27, 2020 18:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tonyspiro/226bb2543fb5ad57901c4bf1a9480b0a to your computer and use it in GitHub Desktop.
Save tonyspiro/226bb2543fb5ad57901c4bf1a9480b0a to your computer and use it in GitHub Desktop.
// logout.js
module.exports = (app, config, partials) => {
app.get('/logout', (req, res) => {
req.session.destroy()
return res.redirect('/')
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment