From 8ee458a724f155684e01e3d6b518bdf0080a2d55 Mon Sep 17 00:00:00 2001 From: mary-crkn Date: Fri, 8 Nov 2024 13:13:27 -0500 Subject: [PATCH] switched the jwt-secret --- Azure_auth/jwt_auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Azure_auth/jwt_auth.py b/Azure_auth/jwt_auth.py index dc495aa..7754454 100644 --- a/Azure_auth/jwt_auth.py +++ b/Azure_auth/jwt_auth.py @@ -5,7 +5,7 @@ import jwt # load .env file load_dotenv() -jwt_secret = os.getenv("JWT_SECRET") +jwt_secret = os.getenv("EDITOR_SECRET_KEY") #define a HTTPBearer to handle the token from client client_token_scheme = HTTPBearer()