aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Configuration/NotificationOptions.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Model/Configuration/NotificationOptions.cs')
-rw-r--r--MediaBrowser.Model/Configuration/NotificationOptions.cs7
1 files changed, 7 insertions, 0 deletions
diff --git a/MediaBrowser.Model/Configuration/NotificationOptions.cs b/MediaBrowser.Model/Configuration/NotificationOptions.cs
index 84352e7fd..f1d9fad30 100644
--- a/MediaBrowser.Model/Configuration/NotificationOptions.cs
+++ b/MediaBrowser.Model/Configuration/NotificationOptions.cs
@@ -58,6 +58,12 @@ namespace MediaBrowser.Model.Configuration
Type = NotificationType.PluginInstalled.ToString(),
Enabled = true,
SendToUserMode = SendToUserType.Admins
+ },
+ new NotificationOption
+ {
+ Type = NotificationType.PluginError.ToString(),
+ Enabled = true,
+ SendToUserMode = SendToUserType.Admins
}
};
}
@@ -166,6 +172,7 @@ namespace MediaBrowser.Model.Configuration
AudioPlayback,
GamePlayback,
InstallationFailed,
+ PluginError,
PluginInstalled,
PluginUpdateInstalled,
PluginUninstalled,