mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
33 lines
789 B
TypeScript
33 lines
789 B
TypeScript
import type { IExecuteFunctions, IDataObject, INodeExecutionData } from 'n8n-workflow';
|
|
|
|
import { apiRequest } from '../../../transport';
|
|
|
|
export async function update(
|
|
this: IExecuteFunctions,
|
|
index: number,
|
|
): Promise<INodeExecutionData[]> {
|
|
const body: IDataObject = {};
|
|
const requestMethod = 'POST';
|
|
|
|
//meta data
|
|
const fileId: string = this.getNodeParameter('fileId', index) as string;
|
|
|
|
//endpoint
|
|
const endpoint = `files/${fileId}`;
|
|
|
|
//body parameters
|
|
const shareWithEmployee = this.getNodeParameter(
|
|
'updateFields.shareWithEmployee',
|
|
index,
|
|
true,
|
|
) as boolean;
|
|
|
|
body.shareWithEmployee = shareWithEmployee ? 'yes' : 'no';
|
|
|
|
//response
|
|
await apiRequest.call(this, requestMethod, endpoint, body);
|
|
|
|
//return
|
|
return this.helpers.returnJsonArray({ success: true });
|
|
}
|