We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ec7121 commit 1b45f5fCopy full SHA for 1b45f5f
user-service/app/middleware/basic-access-control.js
@@ -3,7 +3,6 @@ import { findUserById as _findUserById } from "../model/repository.js";
3
4
export function verifyAccessToken(req, res, next) {
5
const authHeader = req.headers["authorization"];
6
- console.log(authHeader);
7
if (!authHeader) {
8
return res.status(401).json({ message: "Authentication failed" });
9
}
0 commit comments