Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⚡ Add name parameter to file:update #2065

Merged
merged 1 commit into from
Aug 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion packages/nodes-base/nodes/Google/Drive/GoogleDrive.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -789,6 +789,13 @@ export class GoogleDrive implements INodeType {
his is only applicable to files with binary content in Google Drive.</br>
Only 200 revisions for the file can be kept forever. If the limit is reached, try deleting pinned revisions.`,
},
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
description: `The name of the file`,
},
{
displayName: 'OCR Language',
name: 'ocrLanguage',
Expand Down Expand Up @@ -2356,11 +2363,17 @@ export class GoogleDrive implements INodeType {

qs.fields = queryFields;

const body: IDataObject = {};

if (updateFields.name) {
body.name = updateFields.name;
}

if (updateFields.parentId && updateFields.parentId !== '') {
qs.addParents = updateFields.parentId;
}

const responseData = await googleApiRequest.call(this, 'PATCH', `/drive/v3/files/${id}`, {}, qs);
const responseData = await googleApiRequest.call(this, 'PATCH', `/drive/v3/files/${id}`, body, qs);
returnData.push(responseData as IDataObject);
}

Expand Down