allow hiding of notification body for privacy reasons

Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
Michael Telatynski 2017-09-06 10:56:08 +01:00
parent 738c81b506
commit d1af424b3f
No known key found for this signature in database
GPG key ID: 3F879DA5AD802A5E
2 changed files with 29 additions and 4 deletions

View file

@ -73,6 +73,17 @@ export default {
Notifier.setEnabled(enable);
},
getEnableNotificationBody: function() {
return Notifier.isBodyEnabled();
},
setEnableNotificationBody: function(enable) {
if (!Notifier.supportsDesktopNotifications()) {
return;
}
Notifier.setBodyEnabled(enable);
},
getEnableAudioNotifications: function() {
return Notifier.isAudioEnabled();
},