Hi,
I think there might be an issue with your database configuration. can you share your project structure and the DbContext code.
Hi,
Normally the cache is not changed, but it is deleted when the permission grant is changed.
https://github.com/abpframework/abp/blob/dev/modules/permission-management/src/Volo.Abp.PermissionManagement.Domain/Volo/Abp/PermissionManagement/PermissionGrantCacheItemInvalidator.cs#L10
If your application has high load, you can consider upgrading the configuration of the Redis server.
Hi,
How do I reproduce the problem.
Could you share the full steps or a simple test project with me? thanks. shiwei.liang@volosoft.com
Hi,
It store access_token
and refresh_token
to the cookies, It will not affect your application.
And the default value is false
. we usually don't recommend setting it to true.
It will be useful when you need to call the Azure AD API(I assume you are using Azure external login).
: )
Hi,
yes, it's right. you can give it a try.
I can use to check if the User's -> Role -> OU has application permission? Something like User.Roles.OU.Any(x => x.AppPermission == this.Client_Id)
There is no such navigation property relationship, you need to get user roles's ou first.
you can refer to ABP code https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.EntityFrameworkCore/Volo/Abp/Identity/EntityFrameworkCore/EfCoreIdentityUserRepository.cs#L316
Hi,
Okay, seems like a problem, i will check it
You can try re-generate pfx
file.
We use dotnet dev-certs https to generate the pfx file.
dotnet dev-certs https -v -ep openiddict.pfx -p YOURPASSWORD
See: https://abp.io/support/questions/8613/Renewing-the-openiddictpfx-is-not-letting-me-sign-in
Hi,
Is your project problem solved?