Hey,
I am unable to replace the InlineTemplateContentComponent and TemplateContentsComponent components.
Could you help me?
Hello, This solution didn't work for me, regarding { provide: AbpFormatErrorHandlerService, useValue: AbpFormatErrorHandlerCustomService }, https://support.abp.io/QA/Questions/6220/Customize-HTTP-Error-Handler#answer-3a0f13f5-8e56-d080-f923-63fcb15c77d9
Would you help me?
Hello,
I am adding the abp-ng.theme.shared package to the angular front with the following command:
abp add-package @abp/ng.theme.shared --with-source-code --version 8.0.1
When I run the project it gives me the following build error:
./src/main.ts - Error: Module build failed (from ./node_modules/@ngtools/webpack/src/ivy/index.js): Error: Debug error: DtsModuleScopeResolver.read(DisabledDirective from D:/Projects/CI/CI-Labs/ABP.IO/8.0.1/Frontend/angular/projects/abp-ng.theme.shared/src/lib/directives/ disabled.directive.ts), but not a .d.ts file
./src/polyfills.ts - Error: Module build failed (from ./node_modules/@ngtools/webpack/src/ivy/index.js): Error: Debug error: DtsModuleScopeResolver.read(DisabledDirective from D:/Projects/CI/CI-Labs/ABP.IO/8.0.1/Frontend/angular/projects/abp-ng.theme.shared/src/lib/directives/ disabled.directive.ts), but not a .d.ts file
Could you help me?
Hi,
In the backend I created a controller with a view called UIController.
When I run the backend, the HomeController is called and in the action index of that controller I redirect it to the UIController.
This UIController checks whether the user is logged in or not, if he is not, I redirect him to the backend Login screen.
In this process above, when I open the logs, it is recording the following error:
How do I resolve this error? Can you help me?
Hi,
I'm using Code Flow authentication (PKCE). When I access the Angular frontend I am redirected to the backend to log in via Azure AD.
After logging in correctly, I am redirected to the frontend home page, but the home page is blank, that is, the page does not load.
can you help me?
Hi,
Is it mandatory to create a database with these tables for ABP to work?
SaasTenants SaasTenantConnectionStrings SaasEditions PayPlans PayPaymentRequests PayPaymentRequestProducts PayGatewayPlans GdprInfo GdprRequests ChatConversations ChatMessages ChatUserMessages ChatUsers
If not, how can I ensure that these tables are not generated by DbMigrator?
Hey,
I'm trying to generate the angular front proxy and it's giving me this error.
Is there something related to [RemoteService(IsEnabled = false)]?
Is the appservice necessary with [RemoteService(IsEnabled = true)], to be listed in swagger and the proxy to be generated with the command abp generate-proxy -t ng?
Is there any log that can see what the problem is or any indication of what might be happening?
can you help me?
Hi,
I have a screen where I open an abp-modal. In this modal I have an ngx-datatable using ListService. Every time I close and open the modal and sort in the ngx-datatable, one more call request to the ListService and backend increases.
Example: Open the modal and close it the first time. I opened the modal for the second time and clicked on sort the listService is called twice and consequently the backend too.
can you help me?
Hi,
I downloaded the Identity Pro module. I created an IsActive extaProperties for the IdentityRole entity.
I need to allow duplicate profiles to be registered as long as one of the profiles is deactivated.
However, in the IdentityRoleAppService class, when I create a new profile, it executes this method (await RoleManager.CreateAsync(role)).CheckErrors();
In this CheckErrors() it is validating duplicate names.
How do I disable this validation.
Already tried:
[ExposeServices(typeof(IdentityRoleAppService), typeof(IIdentityRoleAppService))] [DisableValidation] [Authorize(IdentityPermissions.Roles.Default)] public class IdentityRoleAppService : IdentityAppServiceBase, IIdentityRoleAppService
[DisableValidation] [Authorize(IdentityPermissions.Roles.Create)] public virtual async Task<IdentityRoleDto> CreateAsync(IdentityRoleCreateDto input)
In this case it doesn't look like validation, but it also doesn't insert the record //(await RoleManager.CreateAsync(role)).CheckErrors(); await RoleManager.CreateAsync(role);
can you help me?
Hi,
I have a MacOS and I'm trying to generate a screen with APB Suite.
When I click on generate it is generating the entity in the TenantDbContext instead of generating it in the DbContext.
can you help me?