Created
September 24, 2018 12:54
-
-
Save anabellaspinelli/3dd2783951c5f10bb307edd23af1f8e6 to your computer and use it in GitHub Desktop.
Redirect to themes view
This file contains hidden or 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
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