feat: Add toggle to mute notifications from chat groups
This commit is contained in:
parent
2a1a68de22
commit
3aa43ac8bc
2 changed files with 16 additions and 0 deletions
|
|
@ -711,6 +711,16 @@
|
||||||
"type": "text",
|
"type": "text",
|
||||||
"placeholders": {}
|
"placeholders": {}
|
||||||
},
|
},
|
||||||
|
"allRooms": "All Group Chats",
|
||||||
|
"@allRooms": {
|
||||||
|
"type": "text",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
|
"discover": "Discover",
|
||||||
|
"@discover": {
|
||||||
|
"type": "text",
|
||||||
|
"placeholders": {}
|
||||||
|
},
|
||||||
"displaynameHasBeenChanged": "Displayname has been changed",
|
"displaynameHasBeenChanged": "Displayname has been changed",
|
||||||
"@displaynameHasBeenChanged": {
|
"@displaynameHasBeenChanged": {
|
||||||
"type": "text",
|
"type": "text",
|
||||||
|
|
|
||||||
|
|
@ -15,6 +15,12 @@ class NotificationSettingsItem {
|
||||||
final String Function(BuildContext) title;
|
final String Function(BuildContext) title;
|
||||||
const NotificationSettingsItem(this.type, this.key, this.title);
|
const NotificationSettingsItem(this.type, this.key, this.title);
|
||||||
static List<NotificationSettingsItem> items = [
|
static List<NotificationSettingsItem> items = [
|
||||||
|
NotificationSettingsItem(
|
||||||
|
PushRuleKind.underride,
|
||||||
|
'.m.rule.message',
|
||||||
|
(c) => L10n.of(c)!.allRooms,
|
||||||
|
),
|
||||||
|
|
||||||
NotificationSettingsItem(
|
NotificationSettingsItem(
|
||||||
PushRuleKind.underride,
|
PushRuleKind.underride,
|
||||||
'.m.rule.room_one_to_one',
|
'.m.rule.room_one_to_one',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue