Add option to only show notification from people you follow

Changelog-Added: Add option to only show notification from people you follow
Closes: #866
This commit is contained in:
Swift
2023-04-04 12:39:48 -04:00
committed by William Casarin
parent 679779ab3e
commit e2812a9aa1
3 changed files with 19 additions and 1 deletions

View File

@@ -407,6 +407,11 @@ struct NotificationView: View {
Toggle(NSLocalizedString("DMs", comment: "Setting to enable DM Local Notification"), isOn: $settings.dm_notification)
.toggleStyle(.switch)
}
Section(header: Text(NSLocalizedString("Notification Preference", comment: "Section header for Notification Preferences"))) {
Toggle(NSLocalizedString("Show only from users you follow", comment: "Setting to Show notifications only associated to users your follow"), isOn: $settings.notification_only_from_following)
.toggleStyle(.switch)
}
}
}
}