mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -96,15 +96,15 @@ export class Webhook implements INodeType {
|
||||
options: [
|
||||
{
|
||||
name: 'Basic Auth',
|
||||
value: 'basicAuth'
|
||||
value: 'basicAuth',
|
||||
},
|
||||
{
|
||||
name: 'Header Auth',
|
||||
value: 'headerAuth'
|
||||
value: 'headerAuth',
|
||||
},
|
||||
{
|
||||
name: 'None',
|
||||
value: 'none'
|
||||
value: 'none',
|
||||
},
|
||||
],
|
||||
default: 'none',
|
||||
@@ -206,7 +206,7 @@ export class Webhook implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
responseData: [
|
||||
'firstEntryBinary'
|
||||
'firstEntryBinary',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -297,7 +297,7 @@ export class Webhook implements INodeType {
|
||||
default: '',
|
||||
description: 'Value of the header.',
|
||||
},
|
||||
]
|
||||
],
|
||||
},
|
||||
],
|
||||
},
|
||||
@@ -418,7 +418,7 @@ export class Webhook implements INodeType {
|
||||
workflowData: [
|
||||
[
|
||||
returnItem,
|
||||
]
|
||||
],
|
||||
],
|
||||
});
|
||||
});
|
||||
@@ -450,8 +450,8 @@ export class Webhook implements INodeType {
|
||||
return resolve({
|
||||
workflowData: [
|
||||
[
|
||||
returnItem
|
||||
]
|
||||
returnItem,
|
||||
],
|
||||
],
|
||||
});
|
||||
});
|
||||
@@ -476,7 +476,7 @@ export class Webhook implements INodeType {
|
||||
// @ts-ignore
|
||||
data: req.rawBody.toString(BINARY_ENCODING),
|
||||
mimeType,
|
||||
}
|
||||
},
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user