diff --git a/services/auth.py b/services/auth.py index 1e1ca6f..bcd8cec 100644 --- a/services/auth.py +++ b/services/auth.py @@ -74,6 +74,7 @@ def login_required(f): info = args[1] context = info.context req = context.get("request") + print(req) is_authenticated, user_id = await check_auth(req) if not is_authenticated: # Raising HTTPUnauthorized exception if the user is not authenticated