forked from zulip/zulip
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
topics: Change topic links of left sidebar to use new permalinks.
This commit updates the topic links obtained from clicking the topics in the left sidebar, recent view and inbox, and those obtained from "Copy link to topic" to use the new topic permalinks. Fixes part of zulip#21505
- Loading branch information
1 parent
1bf3bc0
commit 937927c
Showing
13 changed files
with
159 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -338,6 +338,7 @@ test("basics", () => { | |
assert.ok(!filter.is_personal_filter()); | ||
assert.ok(filter.is_conversation_view()); | ||
assert.ok(!filter.is_conversation_view_with_near()); | ||
assert.ok(!filter.is_in_channel_topic_narrow()); | ||
|
||
terms = [ | ||
{operator: "dm", operand: "[email protected]"}, | ||
|
@@ -364,6 +365,7 @@ test("basics", () => { | |
assert.ok(!filter.is_personal_filter()); | ||
assert.ok(filter.is_conversation_view()); | ||
assert.ok(!filter.is_conversation_view_with_near()); | ||
assert.ok(!filter.is_in_channel_topic_narrow()); | ||
|
||
terms = [ | ||
{operator: "dm", operand: "[email protected],[email protected]"}, | ||
|
@@ -450,6 +452,7 @@ test("basics", () => { | |
assert.ok(!filter.is_personal_filter()); | ||
assert.ok(filter.is_conversation_view()); | ||
assert.ok(!filter.is_conversation_view_with_near()); | ||
assert.ok(filter.is_in_channel_topic_narrow()); | ||
|
||
terms = [ | ||
{operator: "channel", operand: foo_stream_id.toString()}, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters