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

This commit is contained in:
Ali BARIN
2024-02-23 16:19:26 +00:00
parent f6b2312c49
commit 7484bf7403
5 changed files with 137 additions and 1 deletions

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}`;
}