mirror of https://github.com/zulip/zulip.git
help: Add redirect to new public access page.
This commit is contained in:
parent
86a6318d30
commit
bd2dc7358b
|
@ -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",
|
||||
|
|
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue