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 your feature request related to a problem? Please describe.
Because JavaScript must be available in choose_password the form which redirects to another page seems needless.
Describe the solution you'd like
To uphold backwards compatibility add a simple flag shouldNotRedirect to the body of the POST request and just respond with the status code 200 instead of 302.
Describe alternatives you've considered
I'm using a custom page and proxying the request to keep a SPA instead of getting an unneeded redirect (which causes a full refresh of my website).
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Because JavaScript must be available in
choose_password
the form which redirects to another page seems needless.Describe the solution you'd like
To uphold backwards compatibility add a simple flag
shouldNotRedirect
to the body of the POST request and just respond with the status code 200 instead of 302.Describe alternatives you've considered
I'm using a custom page and proxying the request to keep a SPA instead of getting an unneeded redirect (which causes a full refresh of my website).
The text was updated successfully, but these errors were encountered: