help: Add redirect to new public access page.

This commit is contained in:
Tim Abbott 2022-04-28 12:27:13 -07:00
parent 86a6318d30
commit bd2dc7358b
2 changed files with 5 additions and 0 deletions

View File

@ -487,6 +487,7 @@ def write_instrumentation_reports(full_suite: bool, include_webhooks: bool) -> N
"help/disable-new-login-emails",
"help/test-mobile-notifications",
"help/troubleshooting-desktop-notifications",
"help/web-public-streams",
"for/working-groups-and-communities/",
"help/only-allow-admins-to-add-emoji",
"help/night-mode",

View File

@ -906,6 +906,10 @@ urls += [
"help/night-mode",
RedirectView.as_view(url="/help/dark-theme", permanent=True),
),
path(
"help/web-public-streams",
RedirectView.as_view(url="/help/public-access-option", permanent=True),
),
path("help/", help_documentation_view),
path("help/<path:article>", help_documentation_view),
path("api/", api_documentation_view),