Cleanup login page, custom button text
This commit is contained in:
parent
54fb4c7a8a
commit
4c0faa755d
12 changed files with 76 additions and 32 deletions
|
|
@ -464,6 +464,13 @@ public class SettingsService : ISettingsService
|
|||
_unitOfWork.SettingsRepository.Update(setting);
|
||||
}
|
||||
|
||||
if (setting.Key == ServerSettingKey.OidcProviderName &&
|
||||
updateSettingsDto.OidcConfig.ProviderName + string.Empty != setting.Value)
|
||||
{
|
||||
setting.Value = updateSettingsDto.OidcConfig.ProviderName + string.Empty;
|
||||
_unitOfWork.SettingsRepository.Update(setting);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
private void UpdateEmailSettings(ServerSetting setting, ServerSettingDto updateSettingsDto)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue