From 6d805940fe5524cae1864c0beebcd136bda84eda Mon Sep 17 00:00:00 2001 From: N3WT DE COMPET Date: Thu, 8 May 2025 18:51:27 +0200 Subject: [PATCH] fix: Remise en place de l'API_KEY docuseal dans le back --- Back-End/N3wtSchool/settings.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Back-End/N3wtSchool/settings.py b/Back-End/N3wtSchool/settings.py index 777f462..1d9ec1a 100644 --- a/Back-End/N3wtSchool/settings.py +++ b/Back-End/N3wtSchool/settings.py @@ -327,9 +327,10 @@ SIMPLE_JWT = { } # Configuration for DocuSeal JWT +DOCUSEAL_API_KEY="LRvUTQCbMSSpManYKshdQk9Do6rBQgjHyPrbGfxU3Jg" DOCUSEAL_JWT = { 'ALGORITHM': 'HS256', 'SIGNING_KEY': SECRET_KEY, 'EXPIRATION_DELTA': timedelta(hours=1), - 'API_KEY': os.getenv('DOCUSEAL_API_KEY') + 'API_KEY': DOCUSEAL_API_KEY } \ No newline at end of file