From 2ae0a35a3478329bc7bd173c95eb10004c18a051 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Fri, 29 Mar 2024 15:56:58 +1300 Subject: [PATCH] m-teamtp: add config info for apikey. #15209 --- .../Models/IndexerConfig/Bespoke/ConfigurationDataMTeamTp.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataMTeamTp.cs b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataMTeamTp.cs index a14fda2df..221525cbe 100644 --- a/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataMTeamTp.cs +++ b/src/Jackett.Common/Models/IndexerConfig/Bespoke/ConfigurationDataMTeamTp.cs @@ -6,11 +6,13 @@ namespace Jackett.Common.Models.IndexerConfig.Bespoke internal class ConfigurationDataMTeamTp : ConfigurationData { public StringConfigurationItem ApiKey { get; private set; } + public DisplayInfoConfigurationItem ApiKeyInfo { get; private set; } public BoolConfigurationItem FreeleechOnly { get; private set; } public ConfigurationDataMTeamTp() { ApiKey = new StringConfigurationItem("API Key"); + ApiKeyInfo = new DisplayInfoConfigurationItem("ApiKey Info", "The API key can be obtained by accessing your M-Team TP user CP."); FreeleechOnly = new BoolConfigurationItem("Search freeleech only") { Value = false }; } }