Last active
April 14, 2020 04:21
-
-
Save tcaer/068bccb9f9d45e85cd7f0d7600fb9d7e to your computer and use it in GitHub Desktop.
Shows the login route
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
const DISCORD_SIGNIN_LINK = process.env.DISCORD_SIGNIN_LINK; | |
app.get('/login', function(req, res) { | |
res.redirect(DISCORD_SIGNIN_LINK); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment