-
-
Notifications
You must be signed in to change notification settings - Fork 8.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pin stream (formerly "star stream") #819
Closed
Closed
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
95a84fb
Add starred field to Subscription model.
laurenzlong c3adb33
Add popover option for starring stream, and communicates to server wh…
laurenzlong ecfc636
starred streams now show up at top of sidebar and add test.
laurenzlong 51f4fb0
revise UI for starred stream
laurenzlong 74e530b
add ability to star/unstar stream in main subscription settings page
laurenzlong d53c3a1
Add front-end test for starred stream feature.
laurenzlong 7a0c290
revise left sidebar design to have 2 headers: streams and starred
laurenzlong d623ed8
Update stream list when starred stream. Split starred and non starred…
kartikmaji bb2e432
Change feature name star stream to pin to top stream.
kartikmaji 10752f5
Tag pin to top keywords in stream popover for translation.
kartikmaji d87eef3
Hide stream list titles and pinned stream splitter when zoom_in and v…
kartikmaji 788bdae
Center push pin icon and align text in stream popover.
kartikmaji 6305f8d
Add type annotation in test_change_pin_stream test.
kartikmaji 0c2c7f6
Add subscription properties test for stream's pin to top property.
kartikmaji File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
revise UI for starred stream
- Loading branch information
commit 51f4fb056ddb548beec46cd9fc1641cc0880d0e3
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
2015-10-22 21:15:50,003 INFO Worker 0 disconnecting from queue missedmessage_mobile_notifications | ||
2015-10-22 21:15:50,040 INFO Worker 0 disconnecting from queue missedmessage_mobile_notifications |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
2015-11-03 13:27:39,966 INFO Worker 0 connecting to queue invites | ||
2015-11-03 13:27:39,968 INFO Worker 0 connecting to queue feedback_messages | ||
2015-11-03 13:272015-11-03 13:27:40,030 INFO SimpleQueueClient connected (connecting took 0.036s) |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# -*- coding: utf-8 -*- | ||
from __future__ import unicode_literals | ||
|
||
from django.db import models, migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('zerver', '0005_auto_20150920_1340'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='subscription', | ||
name='starred', | ||
field=models.BooleanField(default=False), | ||
), | ||
] |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is this CSS for?