Please remove node_modules and run abp clean
command to clean your project. current zip is too big.
I remember that your project is very complicated. You can try to reproduce the problem in the template first. Thanks
hi
Have you tried regenerating the latest proxy?
If it still doesn't work, please use the template project to reproduce the problem and share it with liming.ma@volosoft.com
hi
Did you check the document?
https://docs.abp.io/en/commercial/latest/modules/account/impersonation#mvc
It seems the login from a web app is only through a redirect to the MVC Authentication app. Is that accurate?
hi
You can use oauth2-oidc
library in vue like angular-oauth2-oidc
abp supports authorization code and password grant types to get access token and id token.
https://developer.okta.com/blog/2018/04/10/oauth-authorization-code-grant-type https://developer.okta.com/blog/2018/06/29/what-is-the-oauth2-password-grant#the-oauth-20-password-grant
hi
I think you are talking about the Social / External Logins
.
Auth0 will issue claims, and ABP will use claims for authorization.
https://learn.microsoft.com/en-us/aspnet/core/security/authentication/social/?view=aspnetcore-7.0&tabs=visual-studio
You can test in another Docker. I think it's an environment issue.
hi
This property controls the show and hides UI.
You can override the AbpAuditingMiddleware
And check the current tenant to disable save to DB.
if (currentTenat.Id == xxx)
{
await next(context);
return;
}
https://github.com/abpframework/abp/blob/c78497a4cebf1ca39e355b6b62185db4a291dc80/framework/src/Volo.Abp.AspNetCore/Volo/Abp/AspNetCore/Auditing/AbpAuditingMiddleware.cs#L39
hi
Please update HealthChecks
packages to the latest 7.0.0-rc2.4
.
eg https://www.nuget.org/packages/AspNetCore.HealthChecks.SqlServer/7.0.0-rc2.9
hi
Savepoints are incompatible with SQL Server's Multiple Active Result Sets(MultipleActiveResultSets), and are not used. If an error occurs during SaveChanges, the transaction may be left in an unknown state.
https://learn.microsoft.com/en-us/ef/core/saving/transactions#savepoints