mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
AuthenticationType is now configurable from /Settings/System.
This commit is contained in:
@@ -4,6 +4,8 @@ using System.ComponentModel;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.Linq;
|
||||
using System.Web;
|
||||
using System.Web.Mvc;
|
||||
using NzbDrone.Core.Model;
|
||||
|
||||
namespace NzbDrone.Web.Models
|
||||
{
|
||||
@@ -17,5 +19,11 @@ namespace NzbDrone.Web.Models
|
||||
[DisplayName("Launch Browser")]
|
||||
[Description("Start default webrowser when NzbDrone starts?")]
|
||||
public bool LaunchBrowser { get; set; }
|
||||
|
||||
[DisplayName("Authentication")]
|
||||
[Description("Secure the webserver with Authentication?")]
|
||||
public AuthenticationType AuthenticationType { get; set; }
|
||||
|
||||
public SelectList AuthTypeSelectList { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user