New: Remove Basic Auth

(cherry picked from commit 0f9e063e2146812f6e963363eee70a524612f354)
This commit is contained in:
Mark McDowall
2025-02-16 19:36:02 -08:00
committed by Qstick
parent 3aed39dd52
commit 57b4a9eb7b
6 changed files with 19 additions and 97 deletions
@@ -207,8 +207,8 @@ namespace NzbDrone.Core.Configuration
if (enabled)
{
SetValue("AuthenticationMethod", AuthenticationType.Basic);
return AuthenticationType.Basic;
SetValue("AuthenticationMethod", AuthenticationType.Forms);
return AuthenticationType.Forms;
}
return Enum.TryParse<AuthenticationType>(_authOptions.Method, out var enumValue)