mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
This commit is contained in:
@@ -1,6 +1,4 @@
|
||||
import {
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
import { INodeProperties } from 'n8n-workflow';
|
||||
|
||||
export const roomMemberOperations: INodeProperties[] = [
|
||||
{
|
||||
@@ -10,9 +8,7 @@ export const roomMemberOperations: INodeProperties[] = [
|
||||
noDataExpression: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'roomMember',
|
||||
],
|
||||
resource: ['roomMember'],
|
||||
},
|
||||
},
|
||||
options: [
|
||||
@@ -27,7 +23,6 @@ export const roomMemberOperations: INodeProperties[] = [
|
||||
},
|
||||
];
|
||||
|
||||
|
||||
export const roomMemberFields: INodeProperties[] = [
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* roomMember:getAll */
|
||||
@@ -36,18 +31,15 @@ export const roomMemberFields: INodeProperties[] = [
|
||||
displayName: 'Room Name or ID',
|
||||
name: 'roomId',
|
||||
type: 'options',
|
||||
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
||||
description:
|
||||
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getChannels',
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'roomMember',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
resource: ['roomMember'],
|
||||
operation: ['getAll'],
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
@@ -59,12 +51,8 @@ export const roomMemberFields: INodeProperties[] = [
|
||||
type: 'collection',
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
'roomMember',
|
||||
],
|
||||
operation: [
|
||||
'getAll',
|
||||
],
|
||||
resource: ['roomMember'],
|
||||
operation: ['getAll'],
|
||||
},
|
||||
},
|
||||
default: {},
|
||||
@@ -76,7 +64,8 @@ export const roomMemberFields: INodeProperties[] = [
|
||||
name: 'notMembership',
|
||||
type: 'options',
|
||||
default: '',
|
||||
description: 'Excludes members whose membership is other than selected (uses OR filter with membership)',
|
||||
description:
|
||||
'Excludes members whose membership is other than selected (uses OR filter with membership)',
|
||||
options: [
|
||||
{
|
||||
name: 'Any',
|
||||
@@ -110,7 +99,8 @@ export const roomMemberFields: INodeProperties[] = [
|
||||
name: 'membership',
|
||||
type: 'options',
|
||||
default: '',
|
||||
description: 'Only fetch users with selected membership status (uses OR filter with exclude membership)',
|
||||
description:
|
||||
'Only fetch users with selected membership status (uses OR filter with exclude membership)',
|
||||
options: [
|
||||
{
|
||||
name: 'Any',
|
||||
@@ -141,6 +131,4 @@ export const roomMemberFields: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user