[RemoteService(IsEnabled = false)]
This works, thanks!
Hello,
Not at all, I do generate client proxies using the command abp generate-proxy -t ng -u https://localhost:44388
should I use without contracts? I have never used that flag in all my abp projects, I am not aware of the impact it could have
Hello, I have followed the information provided here to override a service/controller https://abp.io/docs/8.2/framework/architecture/modularity/extending/customizing-application-modules-overriding-services
After overriding AccountService, when I run proxy to create services (in the frontend), I receive the error Module '"../../volo/abp/identity/models"' has no exported member 'IdentityUserDto'.
I have tried to replace the service like that
I also tried redefining the controller
However, if I include a new method in the controller, this is not recognized by the proxy, am I missing something?
I am trying to implement a specific login process, where the user is going to be able to login either user and password, Microsoft or Google.
I need to keep the login form in the login frontend side since I customized a lot of that component, so I can not use authentication response type code
For social login what is happening is that I can only redirect to abp login page in the backend, there the user can click the social account it prefers, but this is not my goal
My specific requirement is to keep frontend login, in the login I will have two social buttons, when one of those is click the app should redirect to the login specified,
Is there a way to hide abp login and somehow in the url specify which social provider needs to be redirected to? If so, could you provide me the guidance to achieve it please
Hello, thanks a lot, that fixed the issue.
I tested the steps provided here https://abp.io/package-detail/Volo.Abp.Account.Pro.Public.Web.OpenIddict but none of them are working I have noticed that if I click the button See on nuget, I am redirected to a nuget package that is not working https://www.nuget.org/packages/Volo.Abp.Account.Pro.Public.Web.OpenIddict/
According to the console message, this is the code that is failing inside abp-ng.theme.shared.mjs file
Do you have any idea about what is happening?
Hello, thanks for your response,
However, that is not what I meant, I only need to force the user to change their password when a new user account is created, to achieve that I am using the abp feature showed in the image
But it is not working as it should, please take a look at the images and explanation I added to this ticket
Hello, in my application I need to create users, after the user is created I need to force them to change their password, I decided to start using that feature from abpio
as you can see in the image, I set the password as 1q2w3E* for the new user, and it will be forced to reset its password,
The issue comes out when I try to log in with the user,
In the login form I can write whatever password I want, if the username is correct then the login form redirects to password change form (in my opinion this is wrong, the user should not be able to move forward if it is not writing the right password)
Once the change password form is fulfilled, I see another issue, and it is that there is a missing refresh
When the password was successfully changed, there is a redirect to localhost, the component detects that there is a session, but it does not refresh the rest of the components to show the right menu, username and so on.
This is an empty project, but I am facing the same issue with the real project I am working on