1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

Disable recursive row update on cloud automations

This commit is contained in:
Rory Powell 2022-08-23 11:41:58 +01:00
parent bfe5b010da
commit cbc4a65749
2 changed files with 4 additions and 1 deletions

View file

@ -35,8 +35,9 @@ export async function patch(ctx: any): Promise<any> {
pickApi(tableId).patch(ctx)
)
ctx.status = 200
ctx.eventEmitter &&
if (!ctx.disableEmit && ctx.eventEmitter) {
ctx.eventEmitter.emitRow(`row:update`, appId, row, table)
}
ctx.message = `${table.name} updated successfully.`
ctx.body = row
} catch (err) {

View file

@ -1,6 +1,7 @@
const rowController = require("../../api/controllers/row")
const automationUtils = require("../automationUtils")
const { buildCtx } = require("./utils")
const env = require("../../environment")
exports.definition = {
name: "Update Row",
@ -83,6 +84,7 @@ exports.run = async function ({ inputs, appId, emitter }) {
rowId: inputs.rowId,
tableId: tableId,
},
disableEmit: !env.SELF_HOSTED,
})
try {