settings: Add push notifications for the followed topics.

This commit makes it possible for users to control
the push 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-05-28 20:33:04 +05:30
committed by Tim Abbott
parent 5e5538886f
commit d73c715dc2
14 changed files with 133 additions and 8 deletions

View File

@@ -1730,6 +1730,7 @@ Output:
stream_email_notify=kwargs.get("stream_email_notify", False),
stream_push_notify=kwargs.get("stream_push_notify", False),
followed_topic_email_notify=kwargs.get("followed_topic_email_notify", False),
followed_topic_push_notify=kwargs.get("followed_topic_push_notify", False),
sender_is_muted=kwargs.get("sender_is_muted", False),
disable_external_notifications=kwargs.get("disable_external_notifications", False),
)