mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-26 20:11:49 +02:00
New: Added FileSharingTalk indexer.
Fixed Atom DateTime parsing bug.
This commit is contained in:
@@ -65,6 +65,20 @@ namespace NzbDrone.Web.Models
|
||||
[RequiredIf("NewzbinEnabled", true, ErrorMessage = "Password Required when Newzbin is enabled")]
|
||||
public String NewzbinPassword { get; set; }
|
||||
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("UID")]
|
||||
[Description("UserID for File Sharing Talk")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
[RequiredIf("FileSharingTalkEnabled", true, ErrorMessage = "UserID Required when File Sharing Talk is enabled")]
|
||||
public String FileSharingTalkUid { get; set; }
|
||||
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("Secret")]
|
||||
[Description("Password Secret for File Sharing Talk")]
|
||||
[DisplayFormat(ConvertEmptyStringToNull = false)]
|
||||
[RequiredIf("FileSharingTalkEnabled", true, ErrorMessage = "Password Secret Required when File Sharing Talk is enabled")]
|
||||
public String FileSharingTalkSecret { get; set; }
|
||||
|
||||
[DisplayName("NZBs.org")]
|
||||
[Description("Enable downloading episodes from Nzbs.org")]
|
||||
public bool NzbsOrgEnabled { get; set; }
|
||||
@@ -85,6 +99,14 @@ namespace NzbDrone.Web.Models
|
||||
[Description("Enable downloading episodes from Newznab Providers")]
|
||||
public bool NewznabEnabled { get; set; }
|
||||
|
||||
[DisplayName("Womble's Index")]
|
||||
[Description("Enable downloading episodes from Womble's Index")]
|
||||
public bool WomblesEnabled { get; set; }
|
||||
|
||||
[DisplayName("File Sharing Talk")]
|
||||
[Description("Enable downloading episodes from File Sharing Talk")]
|
||||
public bool FileSharingTalkEnabled { get; set; }
|
||||
|
||||
[Required(ErrorMessage = "Please enter a valid number of days")]
|
||||
[DataType(DataType.Text)]
|
||||
[DisplayName("Retention")]
|
||||
|
Reference in New Issue
Block a user