mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 10:47:08 -07:00
Added Growl (Not yet visible on the GUI).
This commit is contained in:
parent
dd7dcf4db8
commit
3fe1e80ccb
16 changed files with 327 additions and 2 deletions
|
@ -338,6 +338,32 @@ namespace NzbDrone.Core.Providers.Core
|
|||
set { SetValue("TwitterAccessTokenSecret", value); }
|
||||
}
|
||||
|
||||
public virtual Boolean GrowlNotifyOnGrab
|
||||
{
|
||||
get { return GetValueBoolean("GrowlNotifyOnGrab"); }
|
||||
|
||||
set { SetValue("GrowlNotifyOnGrab", value); }
|
||||
}
|
||||
|
||||
public virtual Boolean GrowlNotifyOnDownload
|
||||
{
|
||||
get { return GetValueBoolean("GrowlNotifyOnDownload"); }
|
||||
|
||||
set { SetValue("GrowlNotifyOnDownload", value); }
|
||||
}
|
||||
|
||||
public virtual string GrowlHost
|
||||
{
|
||||
get { return GetValue("GrowlHost", String.Empty); }
|
||||
set { SetValue("GrowlHost", value); }
|
||||
}
|
||||
|
||||
public virtual string GrowlPassword
|
||||
{
|
||||
get { return GetValue("GrowlPassword", String.Empty); }
|
||||
set { SetValue("GrowlPassword", value); }
|
||||
}
|
||||
|
||||
private string GetValue(string key)
|
||||
{
|
||||
return GetValue(key, String.Empty);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue