refactor(nodes-base): Apply lint rule node-param-type-options-missing-from-password (#4072)

* 👕 Enable rule

* 👕 Apply rule
This commit is contained in:
Iván Ovejero
2022-09-12 09:36:50 +02:00
committed by GitHub
parent 26b07e28f0
commit d6b930c7be
17 changed files with 25 additions and 0 deletions

View File

@@ -104,6 +104,7 @@ export const meetingFields: INodeProperties[] = [
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Password to join the meeting with maximum 10 characters',
},
@@ -510,6 +511,7 @@ export const meetingFields: INodeProperties[] = [
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Password to join the meeting with maximum 10 characters',
},

View File

@@ -177,6 +177,7 @@ export const webinarFields: INodeProperties[] = [
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Password to join the webinar with maximum 10 characters',
},
@@ -519,6 +520,7 @@ export const webinarFields: INodeProperties[] = [
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: { password: true },
default: '',
description: 'Password to join the webinar with maximum 10 characters',
},