From 8af4437c9294c9733d1f7847175da9a9642572bf Mon Sep 17 00:00:00 2001 From: Sarah Mount Date: Wed, 27 Nov 2024 10:44:33 +0000 Subject: [PATCH] Add redirect for digital transformation of screening Ticket: https://dxw.zendesk.com/agent/tickets/20390 --- app/config/urls.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/config/urls.py b/app/config/urls.py index ece34cac..20277b7a 100644 --- a/app/config/urls.py +++ b/app/config/urls.py @@ -294,6 +294,14 @@ def robots(request): permanent=True, ), ), + # https://dxw.zendesk.com/agent/tickets/20390 + url( + r"^key-tools-and-info/digital-transformation-of-screening/", + lambda request: redirect( + r"/key-tools-and-info/digital-screening/", + permanent=True, + ), + ), ]