Skip to content

Instantly share code, notes, and snippets.

@anabellaspinelli
Created September 24, 2018 12:54
Show Gist options
  • Save anabellaspinelli/3dd2783951c5f10bb307edd23af1f8e6 to your computer and use it in GitHub Desktop.
Save anabellaspinelli/3dd2783951c5f10bb307edd23af1f8e6 to your computer and use it in GitHub Desktop.
Redirect to themes view
app.get(
'/auth/typeform/redirect',
passport.authenticate('typeform'),
(req, res) => {
res.redirect('/themes')
}
}
app.get('/themes', (req, res) => {
res.render('themes', {
user: req.user
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment