Merge pull request #1149 from RichardGrant-93/patch-1
richard.grant/row-update-user-update-password-fix
This commit is contained in:
commit
fec23cb8ea
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue