mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-10 05:53:08 +02:00
Update update.ts
This commit is contained in:
parent
51546ad1ce
commit
00659220a5
1 changed files with 6 additions and 1 deletions
|
@ -89,7 +89,12 @@ export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-
|
||||||
throw new ApiError(meta.errors.accessDenied);
|
throw new ApiError(meta.errors.accessDenied);
|
||||||
}
|
}
|
||||||
|
|
||||||
const fileObj = await this.driveService.update(file, ps, me);
|
const fileObj = await this.driveService.update(file, {
|
||||||
|
folderId: ps.folderId,
|
||||||
|
name: ps.name,
|
||||||
|
isSensitive: ps.isSensitive,
|
||||||
|
comment: ps.comment,
|
||||||
|
}, me);
|
||||||
|
|
||||||
return fileObj;
|
return fileObj;
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue