Merge branch 'master' into BUDI-8429/row-action-view-security

This commit is contained in:
Adria Navarro 2024-09-04 12:27:48 +02:00 committed by GitHub
commit a6a1759561
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 20 additions and 8 deletions

View File

@ -672,6 +672,7 @@ describe("/rowsActions", () => {
} }
it("can trigger an automation given valid data", async () => { it("can trigger an automation given valid data", async () => {
expect(await getAutomationLogs()).toBeEmpty()
await config.api.rowAction.trigger(tableId, rowAction.id, { await config.api.rowAction.trigger(tableId, rowAction.id, {
rowId: row._id!, rowId: row._id!,
}) })
@ -680,13 +681,19 @@ describe("/rowsActions", () => {
expect(automationLogs).toEqual([ expect(automationLogs).toEqual([
expect.objectContaining({ expect.objectContaining({
automationId: rowAction.automationId, automationId: rowAction.automationId,
trigger: expect.objectContaining({ trigger: {
id: "trigger",
stepId: "ROW_ACTION",
inputs: null,
outputs: { outputs: {
fields: {}, fields: {},
row: await config.api.row.get(tableId, row._id!), row: await config.api.row.get(tableId, row._id!),
table: await config.api.table.get(tableId), table: await config.api.table.get(tableId),
}, automation: expect.objectContaining({
_id: rowAction.automationId,
}), }),
},
},
}), }),
]) ])
}) })
@ -731,6 +738,7 @@ describe("/rowsActions", () => {
) )
await config.publish() await config.publish()
expect(await getAutomationLogs()).toBeEmpty()
await config.api.rowAction.trigger(viewId, rowAction.id, { await config.api.rowAction.trigger(viewId, rowAction.id, {
rowId: row._id!, rowId: row._id!,
}) })

View File

@ -216,11 +216,15 @@ export async function run(tableId: any, rowActionId: any, rowId: string) {
const automation = await sdk.automations.get(rowAction.automationId) const automation = await sdk.automations.get(rowAction.automationId)
const row = await sdk.rows.find(tableId, rowId) const row = await sdk.rows.find(tableId, rowId)
await triggers.externalTrigger(automation, { await triggers.externalTrigger(
automation,
{
fields: { fields: {
row, row,
table, table,
}, },
appId: context.getAppId(), appId: context.getAppId(),
}) },
{ getResponses: true }
)
} }