From a72dd5675e224d354a511868206da811c2ab4f4c Mon Sep 17 00:00:00 2001 From: Untone Date: Tue, 12 Dec 2023 11:25:34 +0300 Subject: [PATCH] authorizer-full-vars-fix-2 --- services/auth.py | 1 + 1 file changed, 1 insertion(+) diff --git a/services/auth.py b/services/auth.py index f4d3f679..a68aca33 100644 --- a/services/auth.py +++ b/services/auth.py @@ -40,6 +40,7 @@ def login_required(f): async def decorated_function(*args, **kwargs): info = args[1] context = info.context + print(context) req = context.get("request") is_authenticated, user_id = await check_auth(req) if not is_authenticated: