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