-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Lectures/alfredo zimperz/passport #912
base: main
Are you sure you want to change the base?
Conversation
passport.use(new LocalStrategy( | ||
function(username, password, done) { | ||
|
||
User.findOne({ username: username }, function (err, user) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sobra un username
server.use(express.urlencoded({extended:false})) | ||
server.use(express.json()) | ||
server.use(require('morgan')('combined')); | ||
server.use(require('body-parser').urlencoded({ extended: true })); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Es posible que no necesites body parser
failureRedirect: '/login' })); | ||
|
||
|
||
server.get('/', (req, res)=> res.render('index')) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Esto parece que sobra
No description provided.