hi @strix20
We will reply to you as soon as possible.
hi,
In the Login
method, the user name cannot be get, because the login request has not yet ended.
You may be redirect to the Login
page when you have successfully logged in, the audit log will get the user name, but this user name is the current user instead of user entered UserName
.
hi @ISTeam
Above code does not store the default settings in the database.
This is by design, you will get the correct value or default value when you try to get the setting
To store and use widget settings for every tenant differently.
Using the settings system is a good choice.
hi @KPCS
Could you share your project to me? [email protected]
hi zyrel.sermon
Yes, Do you have any questions about that?
hi @MellowoodMedical
Could you share a simple project that reproduce the problem with me? [email protected]
hi
Will the same problem occur if you create a new Demo project?
ShouldChangePassword
is a feature of zero. If you don't want users to log in, you can try to override the IsActiveAsync
method of AbpProfileService
.
if(user.ShouldChangePasswordOnNextLogin)
{
context.IsActive = false;
}
https://github.com/aspnetboilerplate/aspnetboilerplate/blob/ff508655a00da76e099248728af22b70447eb95b/src/Abp.ZeroCore.IdentityServer4/IdentityServer4/AbpProfileService.cs#L39 https://docs.identityserver.io/en/dev/reference/profileservice.html
hi omkarchoudhari
Could you share your website url to me(include user&password)? [email protected]
From website log we are not getting any much informative error seems impersonate URL returns 302 error.
Please share these logs
hi
Please refer to https://github.com/aspnetboilerplate/aspnetboilerplate/issues/3085#issuecomment-366451689