From 06121e1f691dd349f91bd5efa40ef256d0dbcde7 Mon Sep 17 00:00:00 2001 From: Tim Abbott Date: Wed, 16 Jun 2021 15:07:16 -0700 Subject: [PATCH] urls: Add redirect for community_topic_edits rename. --- zproject/urls.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/zproject/urls.py b/zproject/urls.py index 6feb996035..3498dc91e7 100644 --- a/zproject/urls.py +++ b/zproject/urls.py @@ -758,6 +758,10 @@ urls += [ "help/configure-missed-message-emails", RedirectView.as_view(url="/help/configure-message-notification-emails", permanent=True), ), + path( + "help/community-topic-edits", + RedirectView.as_view(url="/help/configure-who-can-edit-topics", permanent=True), + ), path("help/", help_documentation_view), path("help/", help_documentation_view), path("api/", api_documentation_view),