feat: Add toggle to mute notifications from chat groups

This commit is contained in:
fbievan 2023-05-16 16:50:20 +00:00 committed by Krille
parent 08797da53d
commit 85f5b69d6e
2 changed files with 16 additions and 0 deletions

View File

@ -711,6 +711,16 @@
"type": "text",
"placeholders": {}
},
"allRooms": "All Group Chats",
"@allRooms": {
"type": "text",
"placeholders": {}
},
"discover": "Discover",
"@discover": {
"type": "text",
"placeholders": {}
},
"displaynameHasBeenChanged": "Displayname has been changed",
"@displaynameHasBeenChanged": {
"type": "text",

View File

@ -15,6 +15,12 @@ class NotificationSettingsItem {
final String Function(BuildContext) title;
const NotificationSettingsItem(this.type, this.key, this.title);
static List<NotificationSettingsItem> items = [
NotificationSettingsItem(
PushRuleKind.underride,
'.m.rule.message',
(c) => L10n.of(c)!.allRooms,
),
NotificationSettingsItem(
PushRuleKind.underride,
'.m.rule.room_one_to_one',