-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Password Reset: Is it possible to disable returning 404 when user is not found? #987
Comments
Seems that 404 is the only way to reach |
I'd be interested in submitting a PR around this. Would it be sufficient to pass another variable to skip the 404 error? E.g. That feels a bit hacky, but not sure what would make more sense here? Maybe a global config that can be set in the initializer? |
Using params for that is ugly, and we can't make global configs for everything, I made a PR where you can override |
That's great! Do you know when the next release will land? |
I'm trying not having to re-implement the entire controller functionality and just want to change the behavior a bit.
I don't care if the user is found or not, the response should always be 200.
Is the only solution to just re-implement
POST create
for the passwords controller?Thank you
The text was updated successfully, but these errors were encountered: