Hi We want to build the preview function for the ABP Text Template edit screen. so when user edit the text template they can click to preview to see what will be display on the screen instead of the html code. There is any existing function that support us or we need to do it from scratch? If we need to do by ourself then how we can do it
Hi, We're working on the feature to allow user custom the Text Template for each role. For example, with activation email text template we want to customize so that each role can receive the different content but using the single text template. So how many function in ABP that we need to customize so that and can you provide us some sample ?
ABP Framework version: 8.3 UI:Angular Multi-tenant enabled: yes Localization enabled: yes
Hi
We are experiencing performance issues with one of our APIs. Based on the browser network trace (attached screenshot), we’ve observed the following problem
The request to application-configuration?includeLocalizationResources=false is taking 5.69 seconds to complete, which is significantly longer than expected.
Other related API calls (e.g., localization resources, token, and user credentials) are within normal response time (under 1 second).
We want to troubleshoot api application-configuration why it's taking that long to complete.
Hi, Is this possible to add the prefix to all rabbitmq message before send and verify the event name contains that prefix before processing in general. For example I have 200 rabbitmq event at the moments, I want to add the prefix NewEvent for every message before send without changing the EventName in the ETO class, And in the IDistributedEventHandler, before processing can I check the message contains the prefix NewEvent in event name or not? The reason why I need that is because we're in processing of migrate one service to new architure and clone the ETO class seen not the good idea.
HI, We're looking to add the moduleId property when we defined the permission using PermissionDefinitionProvider class. However the AddPermission method or AddChild method can not except new property. Can you provide us some sample how we can do that?
I have setup the 2FA at tenant level asOptinal, and the user can change
when accessing the page My Account, the app is calling the API api/account/my-profile/can-enable-two-factor, for some users it return false and for some user it return true
so user can not able to select their 2FA method
Hi, I'm having a set of URLs as below:
When I accessing the host side and click the login button (angular app), then it redirect me to the login page with redirect url is host.dev.poc.com How can I configued it?
Hi, Currently we're working to remove the dummyClientSecret config out of the environment.ts. Because in our application, we'll call the connect/token API from the method login of AuthService (@abp/ng.core lib) so after removing it, the API returns invalid_grant message because when calling the connect/token API the login method automaticly send the dummyClientSecret value to the request body. We have tried to set the dummyClientSecret value inside the angular component using the setState method of EnvironmentService, however the login method throw the exception tokenEndpoint is null. But when we console log the environment, then the tokenEndpoint still exists with the same value we config inside the environment.ts file