settings: Configure 'enable_followed_topic_audible_notifications'.

This commit makes it possible for users to control the
audible desktop notifications for messages sent to followed topics
via a global notification setting.

There is no support for configuring this setting through the UI yet.
This commit is contained in:
Prakhar Pratyush 2023-06-13 19:34:20 +05:30 committed by Tim Abbott
parent a848c744c3
commit 134058b06d
5 changed files with 40 additions and 2 deletions

View File

@ -25,8 +25,9 @@ format used by the Zulip server that they are interacting with.
* [`PATCH /realm/user_settings_defaults`](/api/update-realm-user-settings-defaults), * [`PATCH /realm/user_settings_defaults`](/api/update-realm-user-settings-defaults),
[`POST /register`](/api/register-queue), [`PATCH /settings`](/api/update-settings): [`POST /register`](/api/register-queue), [`PATCH /settings`](/api/update-settings):
Added `enable_followed_topic_email_notifications`, `enable_followed_topic_push_notifications` Added `enable_followed_topic_email_notifications`, `enable_followed_topic_push_notifications`
, `enable_followed_topic_wildcard_mentions_notify` and `enable_followed_topic_desktop_notifications` , `enable_followed_topic_wildcard_mentions_notify`, `enable_followed_topic_desktop_notifications`
boolean fields to control email, push, wildcard mention, and visual desktop notifications, respectively, and `enable_followed_topic_audible_notifications` boolean fields to control email,
push, wildcard mention, visual desktop and audible desktop notifications, respectively,
for messages sent to followed topics. for messages sent to followed topics.
**Feature level 188** **Feature level 188**

View File

@ -1726,6 +1726,7 @@ class UserBaseSettings(models.Model):
enable_followed_topic_desktop_notifications=bool, enable_followed_topic_desktop_notifications=bool,
enable_followed_topic_email_notifications=bool, enable_followed_topic_email_notifications=bool,
enable_followed_topic_push_notifications=bool, enable_followed_topic_push_notifications=bool,
enable_followed_topic_audible_notifications=bool,
enable_followed_topic_wildcard_mentions_notify=bool, enable_followed_topic_wildcard_mentions_notify=bool,
) )

View File

@ -9771,6 +9771,15 @@ paths:
description: | description: |
Enable push notifications for messages sent to followed topics. Enable push notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189).
schema:
type: boolean
example: false
- name: enable_followed_topic_audible_notifications
in: query
description: |
Enable audible desktop notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189). **Changes**: New in Zulip 8.0 (feature level 189).
schema: schema:
type: boolean type: boolean
@ -11894,6 +11903,12 @@ paths:
description: | description: |
Enable push notifications for messages sent to followed topics. Enable push notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189).
enable_followed_topic_audible_notifications:
type: boolean
description: |
Enable audible desktop notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189). **Changes**: New in Zulip 8.0 (feature level 189).
email_notifications_batching_period_seconds: email_notifications_batching_period_seconds:
type: integer type: integer
@ -13979,6 +13994,12 @@ paths:
description: | description: |
Enable push notifications for messages sent to followed topics. Enable push notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189).
enable_followed_topic_audible_notifications:
type: boolean
description: |
Enable audible desktop notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189). **Changes**: New in Zulip 8.0 (feature level 189).
enable_digest_emails: enable_digest_emails:
type: boolean type: boolean
@ -15143,6 +15164,15 @@ paths:
description: | description: |
Enable push notifications for messages sent to followed topics. Enable push notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189).
schema:
type: boolean
example: false
- name: enable_followed_topic_audible_notifications
in: query
description: |
Enable audible desktop notifications for messages sent to followed topics.
**Changes**: New in Zulip 8.0 (feature level 189). **Changes**: New in Zulip 8.0 (feature level 189).
schema: schema:
type: boolean type: boolean

View File

@ -435,6 +435,9 @@ def update_realm_user_settings_defaults(
enable_followed_topic_push_notifications: Optional[bool] = REQ( enable_followed_topic_push_notifications: Optional[bool] = REQ(
json_validator=check_bool, default=None json_validator=check_bool, default=None
), ),
enable_followed_topic_audible_notifications: Optional[bool] = REQ(
json_validator=check_bool, default=None
),
enable_followed_topic_wildcard_mentions_notify: Optional[bool] = REQ( enable_followed_topic_wildcard_mentions_notify: Optional[bool] = REQ(
json_validator=check_bool, default=None json_validator=check_bool, default=None
), ),

View File

@ -202,6 +202,9 @@ def json_change_settings(
enable_followed_topic_push_notifications: Optional[bool] = REQ( enable_followed_topic_push_notifications: Optional[bool] = REQ(
json_validator=check_bool, default=None json_validator=check_bool, default=None
), ),
enable_followed_topic_audible_notifications: Optional[bool] = REQ(
json_validator=check_bool, default=None
),
enable_followed_topic_wildcard_mentions_notify: Optional[bool] = REQ( enable_followed_topic_wildcard_mentions_notify: Optional[bool] = REQ(
json_validator=check_bool, default=None json_validator=check_bool, default=None
), ),