mirror of
https://github.com/Ride-The-Lightning/RTL.git
synced 2024-11-19 09:50:36 +01:00
15 lines
362 B
JavaScript
15 lines
362 B
JavaScript
const jwt = require("jsonwebtoken");
|
|
|
|
module.exports = (req, res, next) => {
|
|
try {
|
|
const token = req.headers.authorization.split(" ")[1];
|
|
jwt.verify(token, "default_secret_key");
|
|
next();
|
|
} catch (error) {
|
|
res.status(401).json({
|
|
message: "Authentication Failed!",
|
|
error: "Authentication Failed! Please Login First!"
|
|
});
|
|
}
|
|
};
|