Created
October 22, 2022 21:25
-
-
Save itwasmattgregg/55cd8eff0ccfbbc5aeb730032d4e4e6e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { withSessionRoute } from '@utils/session'; | |
export default withSessionRoute(async (req, res) => { | |
req.session.destroy(); | |
res.json({ isLoggedIn: false }); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment