feat: Add option to not include attachments in exported data (#5463)

This commit is contained in:
Tom Moor
2023-06-20 21:17:39 -04:00
committed by GitHub
parent 0e5a576439
commit eb62b961a4
13 changed files with 106 additions and 23 deletions

View File

@@ -41,7 +41,9 @@ export default abstract class ExportTask extends BaseTask<Props> {
});
try {
Logger.info("task", `ExportTask processing data for ${fileOperationId}`);
Logger.info("task", `ExportTask processing data for ${fileOperationId}`, {
includeAttachments: fileOperation.includeAttachments,
});
await this.updateFileOperation(fileOperation, {
state: FileOperationState.Creating,