Skip to content
Snippets Groups Projects
Unverified Commit c5395a2a authored by Zainab Amir's avatar Zainab Amir Committed by GitHub
Browse files

Add veda fernet key to LMS (#23722)

parent 0262d0e3
No related branches found
No related tags found
No related merge requests found
......@@ -920,6 +920,11 @@ PARENTAL_CONSENT_AGE_LIMIT = ENV_TOKENS.get(
# Allow extra middleware classes to be added to the app through configuration.
MIDDLEWARE.extend(ENV_TOKENS.get('EXTRA_MIDDLEWARE_CLASSES', []))
############### Settings for django-fernet-fields ##################
VEDA_FERNET_KEYS = AUTH_TOKENS.get('VEDA_FERNET_KEYS', [])
FERNET_KEYS = AUTH_TOKENS.get('FERNET_KEYS', FERNET_KEYS)
FERNET_KEYS += VEDA_FERNET_KEYS
################# Settings for the maintenance banner #################
MAINTENANCE_BANNER_TEXT = ENV_TOKENS.get('MAINTENANCE_BANNER_TEXT', None)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment