Add api key to configuration

This commit is contained in:
Joe Rogers
2023-12-16 16:09:10 -05:00
parent 6ea4c44906
commit c8da8eefe0
3 changed files with 26 additions and 2 deletions

View File

@@ -7,6 +7,12 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
/// </summary>
public class PluginConfiguration : BasePluginConfiguration
{
/// <summary>
/// Gets or sets a value to use as the API key for accessing TMDb. This is intentionally excluded from the
/// settings page as the API key should not need to be changed by most users.
/// </summary>
public string TmdbApiKey { get; set; } = TmdbUtils.ApiKey;
/// <summary>
/// Gets or sets a value indicating whether include adult content when searching with TMDb.
/// </summary>