Redirect /umbraco/backoffice/UmbracoApi/Authentication to custom post request
I am working on a Umbraco V8.18 project. I need to extend the PostRequestPasswordReset in the default AuthenticationController.
Therefore I created a custom PostRequestPasswordReset action in my own AuthenctionController.
Is there any event I can hook up to redirect the /umbraco/backoffice/UmbracoApi/Authentication/PostRequestPasswordReset to my own own PostRequestPasswordReset (/umbraco/backoffice/UmbracoApi/MyAuthentication/PostRequestPasswordReset)?
You basicly make a custom controller, with the route set to "/umbraco/backoffice/UmbracoApi/Authentication/PostRequestPasswordReset", where your own PostRequestPasswordReset will be used.
Redirect /umbraco/backoffice/UmbracoApi/Authentication to custom post request
I am working on a Umbraco V8.18 project. I need to extend the PostRequestPasswordReset in the default AuthenticationController.
Therefore I created a custom PostRequestPasswordReset action in my own AuthenctionController.
Is there any event I can hook up to redirect the /umbraco/backoffice/UmbracoApi/Authentication/PostRequestPasswordReset to my own own PostRequestPasswordReset (/umbraco/backoffice/UmbracoApi/MyAuthentication/PostRequestPasswordReset)?
Hi YuQing,
This should be possible using URL Hijaking. There is already greate documetnation for this -> https://docs.umbraco.com/umbraco-cms/reference/routing/custom-controllers
You basicly make a custom controller, with the route set to "/umbraco/backoffice/UmbracoApi/Authentication/PostRequestPasswordReset", where your own PostRequestPasswordReset will be used.
is working on a reply...