Browse Source

Merge branch 'rename-workflow-automation' of github.com:Budibase/budibase into async-workflow-blocks

pull/630/head
mike12345567 6 years ago
parent
commit
fdc653add8
  1. 2
      packages/server/src/api/controllers/user.js
  2. 3
      packages/server/src/automations/steps/createUser.js

2
packages/server/src/api/controllers/user.js

@ -56,9 +56,9 @@ exports.create = async function(ctx) {
ctx.status = 200
ctx.message = "User created successfully."
ctx.userId = response._id
ctx.body = {
_rev: response.rev,
_id: user._id,
username,
name,
}

3
packages/server/src/automations/steps/createUser.js

@ -71,7 +71,8 @@ module.exports.run = async function({ inputs, instanceId }) {
await userController.create(ctx)
return {
response: ctx.body,
id: ctx.body._id,
// internal property not returned through the API
id: ctx.userId,
revision: ctx.body._rev,
success: ctx.status === 200,
}

Loading…
Cancel
Save