mirror of
https://github.com/mmumshad/ansible-playable.git
synced 2025-03-09 23:38:54 +00:00
Initial Commit
This commit is contained in:
commit
c92f737237
273 changed files with 16964 additions and 0 deletions
24
server/auth/local/index.js
Normal file
24
server/auth/local/index.js
Normal file
|
@ -0,0 +1,24 @@
|
|||
'use strict';
|
||||
|
||||
import express from 'express';
|
||||
import passport from 'passport';
|
||||
import {signToken} from '../auth.service';
|
||||
|
||||
var router = express.Router();
|
||||
|
||||
router.post('/', function(req, res, next) {
|
||||
passport.authenticate('local', function(err, user, info) {
|
||||
var error = err || info;
|
||||
if(error) {
|
||||
return res.status(401).json(error);
|
||||
}
|
||||
if(!user) {
|
||||
return res.status(404).json({message: 'Something went wrong, please try again.'});
|
||||
}
|
||||
|
||||
var token = signToken(user._id, user.role);
|
||||
res.json({ token });
|
||||
})(req, res, next);
|
||||
});
|
||||
|
||||
export default router;
|
Loading…
Add table
Add a link
Reference in a new issue