You can join now https://zoom.us/j/97767809299?pwd=MWRTUE9mMi9yTmpDdElrRTdnVjI4dz09
hi
https://docs.abp.io/en/abp/latest/Validation#ivalidatableobject https://docs.abp.io/en/abp/latest/Validation#resolving-a-service
hi
Can I check it remotely?
https://zoom.us/j/97767809299?pwd=MWRTUE9mMi9yTmpDdElrRTdnVjI4dz09
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.