myanonamouse: option to exclude vip torrents. resolves #4579 (#9362)

This commit is contained in:
Diego Heras
2020-08-17 19:49:30 +02:00
committed by GitHub
parent 07103a9eaf
commit e940ac4c51
2 changed files with 26 additions and 38 deletions

View File

@@ -1,10 +1,12 @@
namespace Jackett.Common.Models.IndexerConfig
namespace Jackett.Common.Models.IndexerConfig.Bespoke
{
public class ConfigurationDataMyAnonamouse : ConfigurationData
{
public StringItem MamId { get; private set; }
public DisplayItem MamIdHint { get; private set; }
public BoolItem ExcludeVip { get; private set; }
public DisplayItem Instructions { get; private set; }
public ConfigurationDataMyAnonamouse()
{
@@ -14,6 +16,8 @@ namespace Jackett.Common.Models.IndexerConfig
{
Name = "mam_id instructions"
};
ExcludeVip = new BoolItem { Name = "Exclude VIP torrents" };
Instructions = new DisplayItem("For best results, change the 'Torrents per page' setting to 100 in your Profile => Torrent tab.") { Name = "" };
}
}