hi
You need to update your database with your migrations.
You should use dotnet ef migrations add Updated_OpenIddict command to add new migrations instead of copy the code from https://docs.abp.io/en/abp/8.0/Migration-Guides/OpenIddict4-to-5#openiddictapplicationmodel-changes
After creating new migrations you can use dotnet ef database update to update the database.
https://learn.microsoft.com/en-us/ef/core/managing-schemas/migrations/applying?tabs=dotnet-core-cli
hi
Thanks. Can you try to reproduce this in a small project?
Then I can fix it asap.
hi
I see, you have to upgrade your abp package to >= 7.0.0
The without-contracts feature was introduced on 7.0.0
https://github.com/abpframework/abp/issues/13613
hi
I'm not sure. Can you share a simple project? or how can I reproduce this in a new template project?
liming.ma@volosoft.com
The IdentityServerHttpApiHostModule depends on the IdentityServerDomainModule and will change the claim types. We need to disable this behavior.
The other microservices don't need to change.
https://github.com/abpframework/abp/blob/dev/modules/identityserver/src/Volo.Abp.IdentityServer.Domain/Volo/Abp/IdentityServer/AbpIdentityServerBuilderExtensions.cs#L47-L53
hi
You can override the PermissionManagementModal component by the code of https://github.com/abpframework/abp/pull/18343/files
hi
Can you try to add Authorize to your controller?DruidAI.Blazor.Controllers.APIController.GetNextReques
[Authorize(AuthenticationSchemes = "Bearer")]
public class YourController : Controller
{
}
: )
hi
The migration file looks no problem,
I'm sure you have update database with the migration file.
Please check the table columns in the database.
hi
You can restore a specific version of the packages by editing your YourProject.Web/package.json
add resolutions section and then run abp install-libs command.
{
"version": "0.1.0",
"name": "abpio-account-web",
"private": true,
"dependencies": {
/...
},
"resolutions": {
"jquery": "3.7.1",
"datatables.net": "1.13.8"
}
}