richard.grant/row-update-user-update-password-fix

update existing user password and login fix
This commit is contained in:
Richard Grant 2021-02-21 02:20:05 -08:00 committed by GitHub
parent d58ac80cc9
commit 1cc445de00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 1 deletions

View File

@ -92,7 +92,10 @@ exports.patch = async function(ctx) {
// Creation of a new user goes to the user controller // Creation of a new user goes to the user controller
if (row.tableId === ViewNames.USERS) { if (row.tableId === ViewNames.USERS) {
// the row has been updated, need to put it into the ctx // the row has been updated, need to put it into the ctx
ctx.request.body = row ctx.request.body = {
...row,
password: ctx.request.body.password
}
await usersController.update(ctx) await usersController.update(ctx)
return return
} }