LANCommander/LANCommander.Server/Models/ProviderButtonsModel.cs
Pat Hartl 0f03461f53 Add setting to auto redirect to external provider
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
2026-06-21 01:59:15 -05:00

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; }
}
}