mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 11:22:15 +00:00
30 lines
533 B
TypeScript
30 lines
533 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const teamOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
default: 'get',
|
|
options: [
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
action: 'Get a team',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: ['team'],
|
|
},
|
|
},
|
|
},
|
|
];
|
|
|
|
export const teamFields: INodeProperties[] = [
|
|
// ----------------------------------
|
|
// team: get
|
|
// ----------------------------------
|
|
];
|