mirror of
https://github.com/docmost/docmost.git
synced 2025-11-18 11:11:09 +10:00
Add api prefix to attachment nodes
This commit is contained in:
@ -95,7 +95,7 @@ export const handleAttachmentUpload =
|
||||
if (!attachment) return;
|
||||
|
||||
const node = schema.nodes.attachment?.create({
|
||||
url: `/files/${attachment.id}/${attachment.fileName}`,
|
||||
url: `/api/files/${attachment.id}/${attachment.fileName}`,
|
||||
name: attachment.fileName,
|
||||
mime: attachment.mimeType,
|
||||
size: attachment.fileSize,
|
||||
|
||||
@ -102,7 +102,7 @@ export const handleImageUpload =
|
||||
if (!attachment) return;
|
||||
|
||||
const node = schema.nodes.image?.create({
|
||||
src: `/files/${attachment.id}/${attachment.fileName}`,
|
||||
src: `/api/files/${attachment.id}/${attachment.fileName}`,
|
||||
attachmentId: attachment.id,
|
||||
title: attachment.fileName,
|
||||
size: attachment.fileSize,
|
||||
|
||||
@ -102,7 +102,7 @@ export const handleVideoUpload =
|
||||
if (!attachment) return;
|
||||
|
||||
const node = schema.nodes.video?.create({
|
||||
src: `/files/${attachment.id}/${attachment.fileName}`,
|
||||
src: `/api/files/${attachment.id}/${attachment.fileName}`,
|
||||
attachmentId: attachment.id,
|
||||
title: attachment.fileName,
|
||||
size: attachment.fileSize,
|
||||
|
||||
Reference in New Issue
Block a user