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
Method not found: 'Volo.Abp.Localization.LocalizationResource Volo.Abp.Localization.LocalizationResourceExtensions.AddVirtualJson(Volo.Abp.Localization.LocalizationResource, System.String)'.
This seems to be caused by inconsistent package versions.
Have you tried to reproduce the problem using a template project? Does your docker have any build residue/cache used?
However, for my real project, I have a lot of seed methods. Is there any other way than adding the if condition to every insert statement now?
hi
There is no good way. we have to query first. like:
https://github.com/abpframework/abp/blob/08034310b15e9056c019403f500a507e2b4efbdd/modules/openiddict/app/OpenIddict.Demo.Server/EntityFrameworkCore/ServerDataSeedContributor.cs#L28 https://github.com/abpframework/abp/blob/e3e1779de6df5d26f01cdc8e99ac9cbcb3d24d3c/modules/cms-kit/host/Volo.CmsKit.IdentityServer/IdentityServer/IdentityServerDataSeedContributor.cs#L68