Private GIT

Skip to content
Snippets Groups Projects
Commit a3569535 authored by flightlevel's avatar flightlevel
Browse files

Merge pull request #225 from flightlevel/BasicIndexerMessage

Allow instructions on the basic indexer
parents cd642a48 04fea529
Branches
Tags
No related merge requests found
......@@ -293,3 +293,7 @@ pre {
width: 80px;
}
.setup-item-displayinfo:empty {
display: none;
}
......@@ -11,11 +11,13 @@ namespace Jackett.Models.IndexerConfig
{
public StringItem Username { get; private set; }
public StringItem Password { get; private set; }
public DisplayItem Instructions { get; private set; }
public ConfigurationDataBasicLogin()
public ConfigurationDataBasicLogin(string instructionMessageOptional = null)
{
Username = new StringItem { Name = "Username" };
Password = new StringItem { Name = "Password" };
Instructions = new DisplayItem(instructionMessageOptional) { Name = "" };
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment