Disable legacy authorization methods by default

This commit is contained in:
Niels van Velzen
2025-11-18 16:13:48 +01:00
parent 55dbff8f30
commit 196c243a7d
2 changed files with 31 additions and 1 deletions

View File

@@ -287,5 +287,5 @@ public class ServerConfiguration : BaseApplicationConfiguration
/// <summary>
/// Gets or sets a value indicating whether old authorization methods are allowed.
/// </summary>
public bool EnableLegacyAuthorization { get; set; } = true;
public bool EnableLegacyAuthorization { get; set; }
}