Some fixes for automations, removing password obsfucation in create user step as not useful and making update row work with correct row ID.
This commit is contained in:
parent
185dd1c7a9
commit
08ce2b0557
|
@ -23,7 +23,6 @@ module.exports.definition = {
|
|||
},
|
||||
password: {
|
||||
type: "string",
|
||||
customType: "password",
|
||||
title: "Password",
|
||||
},
|
||||
roleId: {
|
||||
|
|
|
@ -73,7 +73,7 @@ module.exports.run = async function({ inputs, appId, emitter }) {
|
|||
// have to clean up the row, remove the table from it
|
||||
const ctx = {
|
||||
params: {
|
||||
id: inputs.rowId,
|
||||
rowId: inputs.rowId,
|
||||
},
|
||||
request: {
|
||||
body: inputs.row,
|
||||
|
|
Loading…
Reference in New Issue