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; });
Hi,
We are not using Redis cache. Our current role does not have all the permission. Even though we are creating new tenant/user and providing limited access, the RBAC policies are not working.
Scenario:
Please let me know if you need more deatils
i would like to configure with one host app not multiple host app. so all my topic and subscription should be configure in same host app how to do it?