Created
November 12, 2020 07:47
-
-
Save blogcacanid/10987057f9faaf3bf1fb1305829b470e to your computer and use it in GitHub Desktop.
auth.routes.js Authentication JWT Node.js
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 { verifyRegister } = require("../middleware"); | |
const controller = require("../controllers/auth.controller"); | |
module.exports = function(app) { | |
app.use(function(req, res, next) { | |
res.header( | |
"Access-Control-Allow-Headers", | |
"x-access-token, Origin, Content-Type, Accept" | |
); | |
next(); | |
}); | |
app.post("/api/auth/register", | |
[ | |
verifyRegister.checkDuplicateUsernameOrEmail, | |
verifyRegister.checkRolesExisted | |
], | |
controller.register | |
); | |
app.post("/api/auth/login", controller.login); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment