urls: Add redirect for community_topic_edits rename.

This commit is contained in:
Tim Abbott 2021-06-16 15:07:16 -07:00
parent c3d7703369
commit 06121e1f69
1 changed files with 4 additions and 0 deletions

View File

@ -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/<path:article>", help_documentation_view),
path("api/", api_documentation_view),