When enabled, AutoRedirectToProvider will switch authentication challenges to redirect to the external auth provider instead of displaying the password login form. If more than one external provider is configured, a minimal external auth provider login page will be shown. Ref #410
10 lines
294 B
C#
10 lines
294 B
C#
using LANCommander.Server.Settings.Models;
|
|
|
|
namespace LANCommander.Server.Models
|
|
{
|
|
public class ProviderButtonsModel
|
|
{
|
|
public IEnumerable<AuthenticationProvider> Providers { get; set; } = new List<AuthenticationProvider>();
|
|
public string ReturnUrl { get; set; }
|
|
}
|
|
}
|