docs: Move the /configure-missed-message-emails help page.

configure-message-notification-emails is the correct name now.
This commit is contained in:
Mateusz Mandera
2021-04-20 23:38:23 +02:00
committed by Tim Abbott
parent 977a2f7fa0
commit 8d4ab69a46
5 changed files with 7 additions and 2 deletions

View File

@@ -22,5 +22,5 @@ being sent through the email system.
## Related articles
* [Hide message content in emails](/help/configure-missed-message-emails#hide-message-content),
* [Hide message content in emails](/help/configure-message-notification-emails#hide-message-content),
as an individual.

View File

@@ -78,7 +78,7 @@
* [Mute a topic](/help/mute-a-topic)
* [Alert words](/help/add-an-alert-word)
* [Disable new login emails](/help/disable-new-login-emails)
* [Configure message notification emails](/help/configure-missed-message-emails)
* [Configure message notification emails](/help/configure-message-notification-emails)
* [Change notification sound](/help/change-notification-sound)
* [Troubleshoot desktop notifications](/help/troubleshooting-desktop-notifications)
* [Test mobile notifications](/help/test-mobile-notifications)

View File

@@ -496,6 +496,7 @@ def write_instrumentation_reports(full_suite: bool, include_webhooks: bool) -> N
"confirmation_key/",
"node-coverage/(?P<path>.+)",
"docs/(?P<path>.+)",
"help/configure-missed-message-emails",
"help/delete-a-stream",
"api/delete-stream",
"casper/(?P<path>.+)",

View File

@@ -774,6 +774,10 @@ urls += [
"help/delete-a-stream", RedirectView.as_view(url="/help/archive-a-stream", permanent=True)
),
path("api/delete-stream", RedirectView.as_view(url="/api/archive-stream", permanent=True)),
path(
"help/configure-missed-message-emails",
RedirectView.as_view(url="/help/configure-message-notification-emails", permanent=True),
),
path("help/", help_documentation_view),
path("help/<path:article>", help_documentation_view),
path("api/", api_documentation_view),