HI,
Yes, you need to make sure the NuGet.Config
and appsettings.secrets.json
files exist. it is included in your project by default.
Hi,
Sorry, should be :
public override void PreConfigureServices(ServiceConfigurationContext context)
{
PreConfigure<IdentityServerBuilder>(identityBuilder =>
{
identityBuilder.AddResourceOwnerValidator<MyAbpResourceOwnerPasswordValidator>();
});
}
For OpenIddict
, you can replace the TokenController
Hi,
I will discuss with ABP team and back to you.
Hi,
Sorry, I can't reproduce the problem. What's your suite version?
Hi,
We have a document for this: https://docs.abp.io/en/commercial/latest/startup-templates/microservice/add-microservice
Please let me know if I understand wrong your question.
Hi,
It seems your question has been answered, I'm closing the question.
I'm closing the question, free open it if still a problem.
Hi,
It looks like your Redis server is not available.
Here is some helpful information you can check: https://github.com/StackExchange/StackExchange.Redis/issues/1453
it generates a lot more code that looks an over kill for a table like that merely being setup once and will be update probably in years.
Maybe you can use Enum, it is easier than lookup table.
For exmaple:
https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Domain/Volo/CmsKit/Blogs/BlogPost.cs#L34 https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Domain.Shared/Volo/CmsKit/Blogs/BlogPostStatus.cs https://github.com/abpframework/abp/blob/dev/modules/cms-kit/src/Volo.CmsKit.Admin.Web/Pages/CmsKit/BlogPosts/Index.cshtml#L42