Cleanup login page, custom button text
This commit is contained in:
parent
54fb4c7a8a
commit
4c0faa755d
12 changed files with 76 additions and 32 deletions
|
@ -1,14 +1,18 @@
|
|||
#nullable enable
|
||||
using API.Entities.Enums;
|
||||
|
||||
namespace API.DTOs.Settings;
|
||||
|
||||
public sealed record OidcPublicConfigDto
|
||||
public record OidcPublicConfigDto
|
||||
{
|
||||
/// <inheritdoc cref="OidcConfigDto.Authority"/>
|
||||
/// <inheritdoc cref="ServerSettingKey.OidcAuthority"/>
|
||||
public string? Authority { get; set; }
|
||||
/// <inheritdoc cref="OidcConfigDto.ClientId"/>
|
||||
/// <inheritdoc cref="ServerSettingKey.OidcClientId"/>
|
||||
public string? ClientId { get; set; }
|
||||
/// <inheritdoc cref="OidcConfigDto.AutoLogin"/>
|
||||
/// <inheritdoc cref="ServerSettingKey.OidcAutoLogin"/>
|
||||
public bool AutoLogin { get; set; }
|
||||
/// <inheritdoc cref="OidcConfigDto.DisablePasswordAuthentication"/>
|
||||
/// <inheritdoc cref="ServerSettingKey.DisablePasswordAuthentication"/>
|
||||
public bool DisablePasswordAuthentication { get; set; }
|
||||
/// <inheritdoc cref="ServerSettingKey.OidcProviderName"/>
|
||||
public string ProviderName { get; set; } = string.Empty;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue