Thanks for that, seems to have resolved the problem for now.
I assume this was storing the localizations to redis. Disabling this will have some performance impacts elsewhere?
Is there any way to know what's going wrong inside of this module?
Thank you for sorting this! 😀
Thanks for your response!
I've tried the setting "VerifyPasswordDuringExternalLogin", as I said above in point 2. It didn't have any effect, so I checked the source, it is only referenced in one place LoginModel.ShouldAskUserPasswordAsync, to choose if they should enter their existing password. Not to choose if they should be required to create one.
if (!await SettingProvider.IsTrueAsync(AccountSettingNames.VerifyPasswordDuringExternalLogin))
{
return null;
}
if (user.PasswordHash != null)
{
return RedirectToPage("./ExternalPasswordLogin", new
{
returnUrl = ReturnUrl,
returnUrlHash = ReturnUrlHash
});
}
Is there any news on this?
With regard to the message from @dmeagor, it does seem that it is not the correct functionality. Why did you close the ticket?
Is there any way that it can be made to function in a desirable way?
Yes. Thank you.
I just wanted to make sure I'm not doing work I don't need to.
Yes, I'm aware of the repositories, my question is about deleting 'all' of the data for a tenant, not just the tenant row.
If I'm understanding correctly, the providers are run in: Tenant, Edition, Default; order. Each overriding the previous.
Since Tenant cannot override Edition, the UI disables setting it at Tenant Level?
I'd like to warn you about the Editions menu. It may affect your configuration and may not let you change this field.
Thanks for the response!
I'm not sure what you mean by this, how does the editions menu affect the configuration?
That did the trick. Thanks!
Would work nicely on the ABP support login page too.