You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to pass more parameters in the reset password request? For instance to support different front ends that use the same API, a parameter could be used to switch url bases in the link sent out to the user.
I suppose I could extend the model class and add this myself; is that the easiest way? Or would a PR with this functionality be welcome?
The text was updated successfully, but these errors were encountered:
Just to clarify: I don't intend to pass along the url provided in the request, as that would be an obvious security hole (allowing anyone to send users emails linking to nefariousdomain.com/reset_password?t=real_token). Rather, the parameter would act as an enum.
E.g with the parameter url: 'default' I would send the email with a link to 'mainapp.company.com/reset_password' and with url: 'otherapp' the email links to 'different-app.samecompany.com/password_reset'
Is it possible to pass more parameters in the reset password request? For instance to support different front ends that use the same API, a parameter could be used to switch url bases in the link sent out to the user.
I suppose I could extend the model class and add this myself; is that the easiest way? Or would a PR with this functionality be welcome?
The text was updated successfully, but these errors were encountered: