From d57b99e30718b9bdc4c484b354da548e0f5648ce Mon Sep 17 00:00:00 2001 From: Pea Tyczynska Date: Mon, 23 Nov 2020 11:49:16 +0000 Subject: [PATCH] Turn on SMS and email stubs on staging This is done because we will be load testing on staging. --- app/config.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/config.py b/app/config.py index 3809a3109..3db92210b 100644 --- a/app/config.py +++ b/app/config.py @@ -490,6 +490,9 @@ class Staging(Config): FROM_NUMBER = 'stage' API_RATE_LIMIT_ENABLED = True CHECK_PROXY_HEADER = True + SES_STUB_URL = 'https://notify-email-provider-stub-staging.cloudapps.digital/ses' + MMG_URL = 'https://notify-sms-provider-stub-staging.cloudapps.digital/mmg' + FIRETEXT_URL = 'https://notify-sms-provider-stub-staging.cloudapps.digital/firetext' class Live(Config):