-
Notifications
You must be signed in to change notification settings - Fork 303
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
api: Mark messages as read (markAllAsRead, markStreamAsRead, markTopicAsRead) #363
Conversation
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.
Thanks! Looks good modulo two small comments (and the completion of #361, which this is stacked upon).
lib/api/route/messages.dart
Outdated
/// https://zulip.com/api/mark-stream-as-read | ||
/// | ||
/// This binding is deprecated, in FL 155+ use | ||
/// updateMessageFlagsForNarrow instead. |
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.
nit: linkify:
/// updateMessageFlagsForNarrow instead. | |
/// [updateMessageFlagsForNarrow] instead. |
test/api/route/messages_test.dart
Outdated
}) async { | ||
connection.prepare(json: {}); | ||
await markStreamAsRead(connection, streamId: streamId); | ||
check(connection.lastRequest).isNotNull().isA<http.Request>() |
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.
check(connection.lastRequest).isNotNull().isA<http.Request>() | |
check(connection.lastRequest).isA<http.Request>() |
As I mentioned in our call yesterday, the isNotNull
is redundant with the subsequent isA
. The type we're checking for with isA
already excludes null.
(I think I originally introduced this redundant pattern to this file. But we should stop propagating it.)
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.
→ #369 for the existing cases of that pattern.
b270ba6
to
6d9f22d
Compare
@gnprice this is ready as well! |
Thanks! Looks good; merging. |
This pr was split off from #361.
Also fixes part of #130