hi
Is your app Tiered (MVC) or Identity Server Separated?
The app need to depend on the Saas module
Problem resolved, The IIS server requires to access the domain name.
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;
}
}