ParthCodes commited on
Commit
f8208cb
·
verified ·
1 Parent(s): d5c07b5

Update middleware/authUser.py

Browse files
Files changed (1) hide show
  1. middleware/authUser.py +1 -0
middleware/authUser.py CHANGED
@@ -32,4 +32,5 @@ def auth_user(next_function):
32
  print(e) # Log the error if needed
33
  return jsonify({"error": "Unauthorized"}), 401
34
 
 
35
  return middleware_function
 
32
  print(e) # Log the error if needed
33
  return jsonify({"error": "Unauthorized"}), 401
34
 
35
+ middleware_function.__name__ = next_function.__name__
36
  return middleware_function