mirror of
https://github.com/Jackett/Jackett.git
synced 2025-12-30 17:48:17 +01:00
@@ -3,22 +3,14 @@ using System.Diagnostics.CodeAnalysis;
|
||||
namespace Jackett.Common.Models.IndexerConfig.Bespoke
|
||||
{
|
||||
[ExcludeFromCodeCoverage]
|
||||
internal class ConfigurationDataSceneTime : ConfigurationData
|
||||
internal class ConfigurationDataSceneTime : ConfigurationDataCookie
|
||||
{
|
||||
public StringItem Username { get; private set; }
|
||||
public StringItem Password { get; private set; }
|
||||
public RecaptchaItem Captcha { get; private set; }
|
||||
public BoolItem Freeleech { get; private set; }
|
||||
public DisplayItem Instructions { get; private set; }
|
||||
|
||||
public ConfigurationDataSceneTime()
|
||||
: base()
|
||||
: base("For best results, change the 'Torrents per page' setting to the maximum in your profile on the SceneTime webpage.")
|
||||
{
|
||||
Username = new StringItem { Name = "Username" };
|
||||
Password = new StringItem { Name = "Password" };
|
||||
Captcha = new RecaptchaItem() { Name = "Recaptcha" };
|
||||
Freeleech = new BoolItem() { Name = "Freeleech Only (Optional)", Value = false };
|
||||
Instructions = new DisplayItem("For best results, change the 'Torrents per page' setting to the maximum in your profile on the SceneTime webpage.") { Name = "" };
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user