Add helptext for Jackett API key (#1121)

This commit is contained in:
Mathew Giljum 2017-03-11 08:52:34 -05:00 committed by Devin Buhl
parent e26fd22540
commit f2218006a1
1 changed files with 2 additions and 2 deletions

View File

@ -28,11 +28,11 @@ namespace NzbDrone.Core.Indexers.TorrentPotato
[FieldDefinition(1, Label = "Username", HelpText = "The username you use at your indexer.")]
public string User { get; set; }
[FieldDefinition(2, Label = "Passkey", HelpText = "The password you use at your Indexer,")]
[FieldDefinition(2, Label = "Passkey", HelpText = "The password you use at your Indexer (or your API key if you're using Jackett).")]
public string Passkey { get; set; }
public NzbDroneValidationResult Validate()
{
return new NzbDroneValidationResult(Validator.Validate(this));
}
}
}
}