hi
I have a custom users and tenant page,
MVC or Angular page?
Thanks.
hi
What is your solution structure? Can you share a screenshot?
UI type: ? Tiered: ?
Thanks.
hi
Both MVC and Angular need to make anonymous/authentication requests to this API. The content it returns is all public, and doesn't contain any secrets.
Thanks.
你好
你可以考虑使用不需要授权的集成服务.
https://abp.io/docs/latest/framework/api-development/integration-services https://abp.io/docs/latest/tutorials/modular-crm/part-06
hi
Your Hangfire server retrieves type information from the database and utilizes it in the project. So you need to add these assemblies.
Thanks.
hi
What is your project structure?
Does your Hangfire server project contain these assemblies(Enzimweb.Domain
)?
Thanks.
hi
We did not find any ETOs for IdentityUserOrganizationUnit and IdentityUserRole to implement DistributedEventHandler.
You can create IdentityUserOrganizationUnitEto
and IdentityUserRoleEto
Then add an automapper configuration for them to your YourModule
And register for the distributed system.
Configure<AbpDistributedEntityEventOptions>(options =>
{
options.EtoMappings.Add<IdentityUserOrganizationUnit, IdentityUserOrganizationUnitEto>(typeof(YourModule));
options.EtoMappings.Add<IdentityUserRole, IdentityUserRoleEto>(typeof(YourModule));
options.AutoEventSelectors.Add<IdentityUserOrganizationUnit>();
options.AutoEventSelectors.Add<IdentityUserRole>();
});
We are using default ABP API for User creation and Edit. We are facing performance issue when we have hundreds of organization units. We've observed that LocalEventHandler is triggering for every organization unit assignment/removal in User create/edit. Is Default API using Batch Processing for organization unit assignment/removal or else need to inplement explicitly by overriding default API.
What’s your LocalEventHandler
code?
If you only assign/remove an organization for the user, it should only trigger one event, not all existing organization events.
Thanks.
hi
You can refer our Microservice documents:
https://abp.io/docs/latest/get-started/microservice https://abp.io/docs/latest/solution-templates/microservice