Skip to content

Instantly share code, notes, and snippets.

@heylastway
Created November 1, 2019 13:07
Show Gist options
  • Save heylastway/ddc726bb89744f0e6816b158dd7fc5cd to your computer and use it in GitHub Desktop.
Save heylastway/ddc726bb89744f0e6816b158dd7fc5cd to your computer and use it in GitHub Desktop.
app.use('/get-favorites-info', (req, res, next) => {
if (!req.session.likeItems){
req.session.likeItems = {}
}
const { id } = req.body || {}
if (id) {
req.session.likeItems[id] = id
}
next()
})
app.post('/get-favorites-info', (req, res) => {
console.log(req.session.likeItems)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment