mirror of
https://github.com/n8n-io/n8n.git
synced 2025-01-11 12:57:29 -08:00
fix(core): Webhook and form baseUrl missing (#10290)
This commit is contained in:
parent
acbae928f2
commit
8131d66f8c
|
@ -1000,10 +1000,10 @@ export async function getBase(
|
||||||
executeWorkflow,
|
executeWorkflow,
|
||||||
restApiUrl: urlBaseWebhook + globalConfig.endpoints.rest,
|
restApiUrl: urlBaseWebhook + globalConfig.endpoints.rest,
|
||||||
instanceBaseUrl: urlBaseWebhook,
|
instanceBaseUrl: urlBaseWebhook,
|
||||||
formWaitingBaseUrl: globalConfig.endpoints.formWaiting,
|
formWaitingBaseUrl: urlBaseWebhook + globalConfig.endpoints.formWaiting,
|
||||||
webhookBaseUrl: globalConfig.endpoints.webhook,
|
webhookBaseUrl: urlBaseWebhook + globalConfig.endpoints.webhook,
|
||||||
webhookWaitingBaseUrl: globalConfig.endpoints.webhookWaiting,
|
webhookWaitingBaseUrl: urlBaseWebhook + globalConfig.endpoints.webhookWaiting,
|
||||||
webhookTestBaseUrl: globalConfig.endpoints.webhookTest,
|
webhookTestBaseUrl: urlBaseWebhook + globalConfig.endpoints.webhookTest,
|
||||||
currentNodeParameters,
|
currentNodeParameters,
|
||||||
executionTimeoutTimestamp,
|
executionTimeoutTimestamp,
|
||||||
userId,
|
userId,
|
||||||
|
|
Loading…
Reference in a new issue