hi
You can override the SendEmailConfirmationLinkAsync method of AccountEmailer(account/src/Volo.Abp.Account.Pro.Public.Application/Volo/Abp/Account/Emailing/AccountEmailer.cs)
Implementing Passwordless Authentication in ASP.NET Core Identity
You can pass an access_token to angular, and then complete the login. The angular team will reply to you.
eg: http://localhost:4200?token=abcedfg
Is there any documentation for this seeding (permission and localization) data for microservices using administration service db connection string.
At present, you can refer to these two documents.
https://docs.abp.io/en/abp/latest/Data-Seeding https://docs.abp.io/en/abp/latest/Connection-Strings
When I try to seed Localization data to administration microservice database I get this exception.
Can you share your steps and code?
Also another issue is I am unable to overwrite localization strings for OpenIddict Module . I used this guide https://docs.abp.io/en/abp/7.0/Localization to overwrite .
We have a sample. https://github.com/abpframework/abp-samples/tree/master/DocumentationSamples/ExtendLocalizationResource
hi
The MemoryCache will work after disabling the Redis.
context.Services.AddMemoryCache();
context.Services.AddDistributedMemoryCache();
hi
Configure<CmsKitCommentOptions>(options =>
{
options.EntityTypes.Add(new CommentEntityTypeDefinition("SampleArticle"));
});
https://docs.abp.io/en/abp/latest/Modules/Cms-Kit/Comments
hi
You only need to replace them in your Microservices project.
hi
You can refer to this sample.
https://github.com/abpframework/abp-samples/blob/master/DomainTenantResolver/OpenIddict/NG/aspnet-core/src/BookStore.HttpApi.Host/BookStoreHttpApiHostModule.cs#L63-L92
hi
. I have Implemented MondoDb cache for IDistributed cache but it seems like all core module use this package to cache all data.
You can replace this with your implementation
hi
Please share code of your IMenuContributor