mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
👕 Fix lint issue
This commit is contained in:
@@ -40,17 +40,17 @@ export class Crypto implements INodeType {
|
||||
{
|
||||
name: 'Hash',
|
||||
description: 'Hash a text in a specified format.',
|
||||
value: 'hash'
|
||||
value: 'hash',
|
||||
},
|
||||
{
|
||||
name: 'Hmac',
|
||||
description: 'Hmac a text in a specified format.',
|
||||
value: 'hmac'
|
||||
value: 'hmac',
|
||||
},
|
||||
{
|
||||
name: 'Sign',
|
||||
description: 'Sign a string using a private key.',
|
||||
value: 'sign'
|
||||
value: 'sign',
|
||||
},
|
||||
],
|
||||
default: 'hash',
|
||||
@@ -61,7 +61,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'hash'
|
||||
'hash',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -90,7 +90,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'hash'
|
||||
'hash',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -108,7 +108,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action: [
|
||||
'hash'
|
||||
'hash',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -120,7 +120,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'hash'
|
||||
'hash',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -144,7 +144,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'hmac'
|
||||
'hmac',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -173,7 +173,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'hmac'
|
||||
'hmac',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -191,7 +191,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action: [
|
||||
'hmac'
|
||||
'hmac',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -203,7 +203,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'hmac'
|
||||
'hmac',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -241,7 +241,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'sign'
|
||||
'sign',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -259,7 +259,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action: [
|
||||
'sign'
|
||||
'sign',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -312,7 +312,7 @@ export class Crypto implements INodeType {
|
||||
displayOptions: {
|
||||
show: {
|
||||
action:[
|
||||
'sign'
|
||||
'sign',
|
||||
],
|
||||
},
|
||||
},
|
||||
@@ -344,7 +344,7 @@ export class Crypto implements INodeType {
|
||||
}
|
||||
return returnData;
|
||||
},
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
async execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]> {
|
||||
|
||||
Reference in New Issue
Block a user