Jackett/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataFileList.cs

16 lines
929 B
C#
Raw Normal View History

2020-02-09 02:35:16 +00:00
namespace Jackett.Common.Models.IndexerConfig.Bespoke
{
internal class ConfigurationDataFileList : ConfigurationDataUserPasskey
{
public BoolItem IncludeRomanianReleases { get; private set; }
public DisplayItem CatWarning { get; private set; }
public ConfigurationDataFileList()
: base("Note this is <b>not</b> your <i>password</i>.<ul><li>Login to the FileList Website</li><li>Click on the <b>Profile</b> link</li><li>Scroll down to the <b>Reset Passkey</b> section</li><li>Copy the <b>passkey</b>.</li><li>Also be aware of not leaving a trailing blank at the end of the passkey after pasting it here.</li></ul>")
{
IncludeRomanianReleases = new BoolItem {Name = "IncludeRomanianReleases", Value = false};
CatWarning = new DisplayItem("When mapping TV ensure you add category 5000 in addition to 5030, 5040.") {Name = "CatWarning"};
}
}
}