Replies: 1 comment 4 replies
-
Just to check first, did you change Other than that, it makes sense to me that only verified accounts are able to rest their password, though in that case they shouldn't be able to request a reset either. I haven't looked at what checks on account status Rodauth makes exactly. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am trying to incorporate
rodauth-rails
with UUIDs, but I'm having issues with allowing users to reset passwords. For context, I have a fairly simple migration to enable UUIDs:Then I have my
rodauth-rails
migration:Everything so far is working as intended - creating accounts, verifying passwords, logging in, logging out, and closing accounts.
However, my reset password key only works for verified accounts. My repo can be found here, which just has a minimal reproduction of this issue. The issue seems to be that verified accounts will allow you to reset the password with the sent email, but then the key from the sent email for unverified accounts results in a 401. Do accounts need to be verified in order for the password to be reset? Is there a parameter that can be turned off? I didn't find anything in the Rodauth docs.
Beta Was this translation helpful? Give feedback.
All reactions