From cb1531b061144d79fbb4079b66bf69077e8d3db3 Mon Sep 17 00:00:00 2001 From: Alya Abbott Date: Wed, 3 Jul 2024 16:03:57 -0700 Subject: [PATCH] help: Don't link to the direct message feed. We should teach users how to get there. --- help/direct-messages.md | 5 ++++- zerver/lib/markdown/help_relative_links.py | 8 -------- 2 files changed, 4 insertions(+), 9 deletions(-) diff --git a/help/direct-messages.md b/help/direct-messages.md index 085a2b824d..1f25646ba5 100644 --- a/help/direct-messages.md +++ b/help/direct-messages.md @@ -34,7 +34,10 @@ If using Zulip in a browser or desktop, there are several ways to access an exis {tab|desktop-web} -{relative|message|direct} +1. In the left sidebar, click the **Direct message feed** + () icon to the right of the + **Direct messages** label, or use the Shift + P + keyboard shortcut. {tab|mobile} diff --git a/zerver/lib/markdown/help_relative_links.py b/zerver/lib/markdown/help_relative_links.py index 1df1171bd8..24334216fd 100644 --- a/zerver/lib/markdown/help_relative_links.py +++ b/zerver/lib/markdown/help_relative_links.py @@ -165,13 +165,6 @@ starred_instructions = """ sidebar, or by [searching](/help/search-for-messages) for `is:starred`. """ -direct_instructions = """ -1. In the left sidebar, click the **Direct message feed** - () icon to the right of the - **Direct messages** label, or use the Shift + P - keyboard shortcut. -""" - inbox_instructions = """ 1. Click on **Inbox** in the left sidebar, or use the Shift + I keyboard shortcut. @@ -183,7 +176,6 @@ message_info = { "recent": ["Recent conversations", "/#recent", recent_instructions], "all": ["Combined feed", "/#feed", all_instructions], "starred": ["Starred messages", "/#narrow/is/starred", starred_instructions], - "direct": ["Direct message feed", "/#narrow/is/dm", direct_instructions], "inbox": ["Inbox", "/#inbox", inbox_instructions], }