Fix external workflow triggers not passing though instance ID
This commit is contained in:
parent
9467c5562e
commit
d13a597ed2
|
@ -87,5 +87,8 @@ exports.getLogicList = async function(ctx) {
|
||||||
exports.trigger = async function(ctx) {
|
exports.trigger = async function(ctx) {
|
||||||
const db = new CouchDB(ctx.user.instanceId)
|
const db = new CouchDB(ctx.user.instanceId)
|
||||||
let workflow = await db.get(ctx.params.id)
|
let workflow = await db.get(ctx.params.id)
|
||||||
await triggers.externalTrigger(workflow, ctx.request.body)
|
await triggers.externalTrigger(workflow, {
|
||||||
|
...ctx.request.body,
|
||||||
|
instanceId: ctx.user.instanceId,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue