hi
Check your application logs and the database to confirm the problem.
hi
You can override permissions by a custom policy or filter data in a repository or domain service.
https://docs.abp.io/en/abp/latest/Authorization#overriding-a-permission-by-a-custom-policy
https://docs.abp.io/en/abp/latest/Data-Filtering
PS. and a non-framework related question, how can I update my username here? because instead of it email was indicated and it does not allow changing in the account..
Send an email to info@abp.io :)
hi
I tested and it works correctly on my IIS. I think there may be a problem with your IIS environment.
hi
It is not recommended that you inject services inside the ConfigureServices method. The dependency injection container has not been created yet.
I need to check tenant db connectionSetting before configuring menu contributor.
You can inject the services in menu contributor.
public class AbpAccountUserMenuContributor : IMenuContributor
{
public virtual Task ConfigureMenuAsync(MenuConfigurationContext context)
{
var tenantRepository = context.ServiceProvider.GetRequiredService<ITenantRepository>();
return Task.CompletedTask;
}
}
hi
We are still testing and fixing the issue of preview 1, we do not recommend you to try it for now. You can wait for a few preview versions
hi
I created new project with ABP version 5.3.1 - redis works fine
Can you compare the code?
hi
CmsKitAdminMenuContributor is not designed to be overridden. This is not possible at the moment.
bypass the default login flow
You can base on different clients to customize the Login page. But it seems impossible to bypass it.
I'm not familiar with angular, but you can give it a try.