Hi,
Currently I integrated Azure service Bus integration by using AbpEventBusAzureModule for Notification(custom) module. Due to this my user/tenant creation has been stopped working and when I was looking at the Azure service Bus topics, I see user/tenant message creation is happening in Azure and seems like data seeding process from ABP is happening in memory stream and it does not find those user tenant creation message in memory stream. What is the resolution?
we have to redirect to Angular UI / SPA scenario, and it returns 302 and empty data. but after hard refresh it returns the data and response code is 200
Hi,
We are currently using single layer modular monolithic web app and api.
Issue: After successful login, the page redirects to next page but does not load any data on the web page and in the network tab the response code is 302. But after hard refresh, the page shows the actual data and response code returns 200.
How do you resolve this issue?
Even clearing the cache, it not working I have added this piece of configuration in Host module class it working. is it ok add
// Configure password requirements
Configure<IdentityOptions>(options =>
{
options.Password.RequiredLength = 8;
});
This is the code i have added module file
// Configure password requirements Configure<IdentityOptions>(options => { options.Password.RequiredLength = 8; });