Add logout and nav drawyer

This commit is contained in:
Kevin Thomas
2021-08-05 18:37:51 -07:00
parent de4e68cfc5
commit 790c1fda22
2 changed files with 75 additions and 13 deletions

View File

@@ -16,6 +16,7 @@ router.get('/auth', function (req, res) {
router.get('/logout', function (req, res, next) {
req.logout()
res.sendStatus(200)
})
module.exports = router