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()