Greg Price
Greg Price
Zulip has a long list of realm settings. Many of them are relevant to the mobile app. This issue is for beginning to track a few of them; once we...
This Zulip feature: https://zulip.com/help/read-receipts The API endpoint for this feature is: https://zulip.com/api/get-read-receipts Unlike most Zulip features, this data isn't controlled by the event system; we just fetch it separately from...
I.e., half of this feature: https://zulip.com/help/typing-notifications along with #666. In the API, the relevant data appears as events: https://zulip.com/api/get-events#typing-start https://zulip.com/api/get-events#typing-stop In the code, let's organize the data under a class...
I.e., half of this feature: https://zulip.com/help/typing-notifications along with #665. In the API, the relevant endpoint is: https://zulip.com/api/set-typing-status For an implementation for comparison, see zulip-mobile's `sendTypingStart` and `sendTypingStop`, or the corresponding...
Like the "Starred messages" narrow the web app offers at the top of the left sidebar. We should support this narrow in the message list, and then provide a way...
Like the "Mentions" narrow the web app offers at the top of the left sidebar. We should support this narrow in the message list, and then provide a way to...
This is a followup to: * #663 As mentioned there, the relevant API is being expanded to support additional features: * https://github.com/zulip/zulip/issues/28779 We should implement the new API. This is...
I.e., this Zulip feature: https://zulip.com/help/dm-mention-alert-notifications#alert-words The feature is in the midst of API changes that will also involve a rename. The old/existing API will still be present in Zulip Server...
We should store the list of user groups in the realm, with their metadata and their memberships, and keep the data up to date. This data originates as `realm_user_groups` in...
We should support the three user settings `enable_offline_push_notifications`, `enable_online_push_notifications`, `enable_stream_push_notifications`. These let the user control, at a coarse granularity, whether and when the server sends them push notifications. The user...