feat(webhook/catch-raw-webhook): add sync support

This commit is contained in:
Ali BARIN
2024-03-11 13:54:00 +01:00
parent f6b2312c49
commit 7484bf7403
5 changed files with 137 additions and 1 deletions
+4
View File
@@ -103,6 +103,10 @@ class Step extends Base {
return `/webhooks/connections/${this.connectionId}`;
}
if (this.parameters.workSynchronously) {
return `/webhooks/flows/${this.flowId}/sync`;
}
return `/webhooks/flows/${this.flowId}`;
}