hi @hungvt
The license of your organization is that Team cannot download the source code. If you need the source code, you can consider upgrading your license.
https://commercial.abp.io/pricing
The question that is still open: why you hardcoded custom grant type names? When we added manually some custom name to DB - it worked. But in ABP Identity Server management page we cannot do that.
I will try solve this problem in the next version. : )
https://github.com/abpframework/abp/issues/5189
hi
See https://support.abp.io/QA/Questions/361/What-is-the-estimated-timeline-for--'startup-template-to-create-microservices'#answer-efdd439d-15f8-4a83-d4b4-39f737902052
We will resolve this in 3.1. https://github.com/abpframework/abp/pull/5146
hi @alexander.nikonov
This is related to identityserver. abp just calls its api. So you should check the documentation of the Identiy server and its Github more.
https://identityserver4.readthedocs.io/en/latest/ https://github.com/IdentityServer/IdentityServer4
hi @Anushri
I am getting exception like IUserTwoFactor while generating passwordresettoken.
What version does the new solution is used? Is it 3.0.5?
The new ef project is created for your reference. There is currently no document on how to migrate mongodb to ef core postgres.
You can try the steps I mentioned earlier. https://support.abp.io/QA/Questions/365#answer-c4cf4340-3ad2-7aaf-ae8f-39f71d1dcf3d
hi @drpdev2
It's only install the XXX.Domain
pakcages in Domain
layer.
You should configure the localization in different layers.
Configure Account.Pro.Localizetion.AccountResource
in your Application.Contract
layer because the Volo.Abp.Account.Pro.Public.Application.Contracts
or Volo.Abp.Account.Pro.Admin.Application.Contracts
packages are installed the layer.
hi yuhang.ji@yftech-dl.com
Sorry for late, I will check it today.
hi
we would prefer to authenticate and log in identity user after finding him in the repository,
Identity server does not seem to be able to do this, it uses tokens instead of cookies, so it cannot automatically log in.
await _signInManager.SignInAsync(identityUser, true);
is applicable for the cookie authentication scheme, because the browser can automatically update the cookie.
Maybe the identity server can generate a new token on the server side, etc, but you need to make Angular get and use the new token.
hi
Replacing to postgres means you need to change mongodb to EF Core.
You need to change the mongodb-related packages and module packages in the project to EF Core. You also need to add migration for EF Core. I suggest you create a project template that uses EF Core and refer to its code.
Please read the documentation of data access.