Disable password auth setting
This commit is contained in:
parent
1180d518a2
commit
188020597c
20 changed files with 164 additions and 75 deletions
|
|
@ -153,6 +153,10 @@ public class ServerSettingConverter : ITypeConverter<IEnumerable<ServerSetting>,
|
|||
destination.OidcConfig ??= new OidcConfigDto();
|
||||
destination.OidcConfig.ProvisionUserSettings = bool.Parse(row.Value);
|
||||
break;
|
||||
case ServerSettingKey.DisablePasswordAuthentication:
|
||||
destination.OidcConfig ??= new OidcConfigDto();
|
||||
destination.OidcConfig.DisablePasswordAuthentication = bool.Parse(row.Value);
|
||||
break;
|
||||
case ServerSettingKey.LicenseKey:
|
||||
case ServerSettingKey.EnableAuthentication:
|
||||
case ServerSettingKey.EmailServiceUrl:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue