mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
beyoundhdapi: add config info about keys #12993
This commit is contained in:
@@ -50,7 +50,7 @@ namespace Jackett.Common.Indexers
|
|||||||
logger: l,
|
logger: l,
|
||||||
p: ps,
|
p: ps,
|
||||||
cacheService: cs,
|
cacheService: cs,
|
||||||
configData: new ConfigurationDataAPIKeyAndRSSKey())
|
configData: new ConfigurationDataAPIKeyAndRSSKey("Find the API and RSS keys under your security settings (your profile picture -> my security)"))
|
||||||
{
|
{
|
||||||
Encoding = Encoding.UTF8;
|
Encoding = Encoding.UTF8;
|
||||||
Language = "en-US";
|
Language = "en-US";
|
||||||
|
@@ -4,11 +4,13 @@ namespace Jackett.Common.Models.IndexerConfig
|
|||||||
{
|
{
|
||||||
public StringConfigurationItem ApiKey { get; private set; }
|
public StringConfigurationItem ApiKey { get; private set; }
|
||||||
public StringConfigurationItem RSSKey { get; private set; }
|
public StringConfigurationItem RSSKey { get; private set; }
|
||||||
|
public DisplayInfoConfigurationItem Instructions { get; private set; }
|
||||||
|
|
||||||
public ConfigurationDataAPIKeyAndRSSKey()
|
public ConfigurationDataAPIKeyAndRSSKey(string instructionMessageOptional = null)
|
||||||
{
|
{
|
||||||
ApiKey = new StringConfigurationItem("API Key");
|
ApiKey = new StringConfigurationItem("API Key");
|
||||||
RSSKey = new StringConfigurationItem("RSS Key");
|
RSSKey = new StringConfigurationItem("RSS Key");
|
||||||
|
Instructions = new DisplayInfoConfigurationItem("", instructionMessageOptional);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user