mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
Finishing up Prowl integration.
This commit is contained in:
parent
eb6b5a6b0e
commit
24a2c2be59
5 changed files with 22 additions and 3 deletions
|
@ -125,12 +125,16 @@ namespace NzbDrone.Web.Models
|
|||
[Description("Send notification when episode is downloaded?")]
|
||||
public bool GrowlNotifyOnDownload { get; set; }
|
||||
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("Host running Growl")]
|
||||
[Description("Host or IP Address:Port")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
public string GrowlHost { get; set; }
|
||||
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("Growl host Password")]
|
||||
[Description("Password is required if Growl is running on another system")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
public string GrowlPassword { get; set; }
|
||||
|
||||
|
||||
|
@ -147,12 +151,16 @@ namespace NzbDrone.Web.Models
|
|||
[Description("Send notification when episode is downloaded?")]
|
||||
public bool ProwlNotifyOnDownload { get; set; }
|
||||
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("API Keys")]
|
||||
[Description("Comma-Separated list of API Keys")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
public string ProwlApiKeys { get; set; }
|
||||
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("Priority")]
|
||||
[Description("Priority to send alerts to Prowl with")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
public int ProwlPriority { get; set; }
|
||||
|
||||
public SelectList ProwlPrioritySelectList { get; set; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue