We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I click on "Change password", then "Cancel", the password param is sent with an empty value, which gives the error: no such column: password
password
no such column: password
I suggest changing encryptPassword function to:
const encryptPassword: Before = async (request) => { const { method } = request const { [passwordProperty]: newPassword, ...rest } = request.payload || {} if (method === 'post') { return { ...request, payload: { ...rest, ...(newPassword ? { [encryptedPasswordProperty]: await hash(newPassword) } : null) }, } } return request }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I click on "Change password", then "Cancel", the
password
param is sent with an empty value, which gives the error:no such column: password
I suggest changing encryptPassword function to:
The text was updated successfully, but these errors were encountered: