Hello,
please check similar issue https://support.abp.io/QA/Questions/1790/Forgot-Password--password-reset-codelink-not-send-to-email
thanks
Hello,
I have used 8.0.5 version I have checked at my end it's working fine.
Thanks
Hello,
To Customize UserComponent you have to add Identity Module as a Project in your application. It will result like
Now you have to add your custom component under this folder as shown in image
and then add below code in identity-routing.module.ts
{
path: 'users',
component: ReplaceableRouteContainerComponent,
data: {
requiredPolicy: 'AbpIdentity.Users',
replaceableComponent: {
key: eIdentityComponents.Users,
defaultComponent: MyComponentComponent,
} as ReplaceableComponents.RouteData<MyComponentComponent>,
},
},
It will replace your component.
Thanks
Hello,
could you please share any code snippet to reproduce the issue or you may share any sample project at support@abp.io so that we can better assist you.
Thanks
Hello again,
could you please try this once https://support.abp.io/QA/Questions/5026/Starting-Angular---cleanfresh-project#answer-3a0b0dc4-5baa-df28-682b-e9356fdfc079 if it doesn't help you could you please share a sample project on support@abp.io
thanks
Hello,
please check out https://docs.abp.io/en/abp/8.1/Migration-Guides/OpenIddict-Angular
thanks
Hello,
try to downgrade Angular version to 17.1
Delete yarn.lock
file and rerun yarn
command
then try to run application.
check similar issue https://support.abp.io/QA/Questions/7086/Angular-app-does-not-working-after-upgrade-to-811
thanks
Hello,
If you want to add extra field in UserComponent follow this article https://community.abp.io/posts/how-to-add-custom-property-to-the-user-entity-6ggxiddr
Thanks