1
0
Fork 0
mirror of synced 2024-07-08 15:56:23 +12:00

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:
mike12345567 2021-04-12 11:53:37 +01:00
parent 9b77f4e518
commit d2a3dc4a2f
2 changed files with 1 additions and 2 deletions

View file

@ -23,7 +23,6 @@ module.exports.definition = {
},
password: {
type: "string",
customType: "password",
title: "Password",
},
roleId: {

View file

@ -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,