Add option to disable deprecated legacy authorization options (#13306)

This commit is contained in:
Niels van Velzen
2025-01-11 17:37:13 +01:00
committed by GitHub
parent 3b8e614819
commit fd3057b549
2 changed files with 23 additions and 16 deletions

View File

@@ -276,4 +276,9 @@ public class ServerConfiguration : BaseApplicationConfiguration
/// </summary>
/// <value>The trickplay options.</value>
public TrickplayOptions TrickplayOptions { get; set; } = new TrickplayOptions();
/// <summary>
/// Gets or sets a value indicating whether old authorization methods are allowed.
/// </summary>
public bool EnableLegacyAuthorization { get; set; } = true;
}