mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 20:00:02 +00:00
fix(core): Fix routing for waiting webhooks and forms (#14470)
This commit is contained in:
committed by
GitHub
parent
6c73d7ed81
commit
b5d5b57118
@@ -193,13 +193,13 @@ export abstract class AbstractServer {
|
||||
|
||||
// Register a handler for waiting forms
|
||||
this.app.all(
|
||||
`/${this.endpointFormWaiting}/:path/{:suffix}`,
|
||||
`/${this.endpointFormWaiting}/:path{/:suffix}`,
|
||||
createWebhookHandlerFor(Container.get(WaitingForms)),
|
||||
);
|
||||
|
||||
// Register a handler for waiting webhooks
|
||||
this.app.all(
|
||||
`/${this.endpointWebhookWaiting}/:path/{:suffix}`,
|
||||
`/${this.endpointWebhookWaiting}/:path{/:suffix}`,
|
||||
createWebhookHandlerFor(Container.get(WaitingWebhooks)),
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user