Is there a way users can change their own passwords after logging in? (or can admins hardcode new passwords in the DB somehow?)
Hi @conspacer
There isn't any way to change user's password after signed-in.
But yes, you could change it in the DB.
The password is hashed (scrypt), so you could hash your new password then replace it.
@jackycute do I need to pull the salt value from the instance to generate a correct hash?
Yes, you do.
Thanks for the info
I think reseting the password by using the script manually is no a propper solution. You have to take care to not damage the DB, for example.
It would be more useful for everyone to have a reset button as other web apps have.
Most helpful comment
I think reseting the password by using the script manually is no a propper solution. You have to take care to not damage the DB, for example.
It would be more useful for everyone to have a reset button as other web apps have.