We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e828afc commit 924faa0Copy full SHA for 924faa0
1 file changed
src/forward-to-localhost.ts
@@ -12,6 +12,9 @@ export const forwardWebhookToLocalhost = async (
12
method: "POST",
13
url: `${baseUrl}${webhook.path}`,
14
data: JSON.parse(webhook.body),
15
+ headers: {
16
+ "X-WS-Original-Headers": webhook.headers,
17
+ },
18
};
19
20
axios
0 commit comments