mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
23 lines
467 B
TypeScript
23 lines
467 B
TypeScript
import type { IWebhookDescription } from 'n8n-workflow';
|
|
|
|
export const sendAndWaitWebhooksDescription: IWebhookDescription[] = [
|
|
{
|
|
name: 'default',
|
|
httpMethod: 'GET',
|
|
responseMode: 'onReceived',
|
|
responseData: '',
|
|
path: '={{ $nodeId }}',
|
|
restartWebhook: true,
|
|
isFullPath: true,
|
|
},
|
|
{
|
|
name: 'default',
|
|
httpMethod: 'POST',
|
|
responseMode: 'onReceived',
|
|
responseData: '',
|
|
path: '={{ $nodeId }}',
|
|
restartWebhook: true,
|
|
isFullPath: true,
|
|
},
|
|
];
|