From f3e0cfc727186988768595b279e3687c13c6be9b Mon Sep 17 00:00:00 2001 From: Pea Tyczynska Date: Wed, 24 Feb 2021 11:34:29 +0000 Subject: [PATCH] Pull DVLA address from credentials on staging So that we can test this flow on staging. --- app/config.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/config.py b/app/config.py index 2a2f6a4d1..3338fe8c0 100644 --- a/app/config.py +++ b/app/config.py @@ -515,6 +515,7 @@ class Staging(Config): FROM_NUMBER = 'stage' API_RATE_LIMIT_ENABLED = True CHECK_PROXY_HEADER = True + DVLA_EMAIL_ADDRESS = os.getenv('DVLA_EMAIL_ADDRESS') class Live(Config):