Hi @arifharsono
Can you create a new ticket and describe it in detail?
Can you provide the yarn list --pattern abp
command result to us? The config packages (@volo/abp.ng.saas.config, etc.) versions should be v2.7. If you see V2.9, some things have gone wrong.
register
method like below: this.accountService.register({...newUser, foo: 1, bar: 2} as any);
If you create a new endpoint in backend, you should create your own service.
Hi Ian,
I created two GitHub gists to explain how to replace the RegisterComponent and the ForgotPasswordComponent.
If you would like to use v2.7, add resolutions
to package.json
as shown below, remove yarn.lock
and then run the yarn
again.
"dependencies": { ... },
"resolutions": {
"@volo/abp.commercial.ng.ui": "~2.7.0",
"@volo/abp.ng.account.config": "~2.7.0",
"@volo/abp.ng.audit-logging.config": "~2.7.0",
"@volo/abp.ng.identity-server.config": "~2.7.0",
"@volo/abp.ng.identity.config": "~2.7.0",
"@volo/abp.ng.language-management.config": "~2.7.0",
"@volo/abp.ng.saas.config": "~2.7.0",
"@volo/abp.ng.text-template-management.config": "~2.7.0",
}
The compiling error and these warnings are not a problem for your application. Can you upgrade the ABP version to v2.9? The problem may be resolved.
Hi @arifharsono
The error that is "Cannot read property 'twoWay' of undefined" has been fixed. Update @volo/abp.ng.theme.lepton package version to v2.9.1 and install packages again.
Hi @BennieMok
See the Modifying the Menu document.. This will help you.
4- I added a document related to PermissionManagementComponent replacement. See How to Replace PermissionManagementComponent
- How to use/implement Two authentication code when user login ? I ticked Two factor verification in the user creation screen but it do not have any changes. What should I configuration in the Asp.net-core to use Two factor verification?
We are working on this in the v3.0 milestone. It probably will be released with v3.0.
- Regarding the Permission screen, I found that the permissions was loaded from XXXPermissionDefinitionProvider.cs file in the asp.net-core project. I refered to Volo.Identity.Pro module (angular folder). It used <abp-permission-management> to show permission list. Currently, I want to customize the Permission screen. But I don't know how to edit UI of <abp-permission-management> ? And Could you guide how to show the permission screen from a other page instead of Identity module?
I'll create a guide and share the link with you.