Local file storage (#5763)

Co-authored-by: Tom Moor <tom.moor@gmail.com>
This commit is contained in:
Apoorv Mishra
2023-09-21 03:42:03 +05:30
committed by GitHub
parent fea50feb0d
commit 67b1fe5514
41 changed files with 893 additions and 139 deletions

View File

@@ -48,7 +48,7 @@ export default async function attachmentCreator({
if ("url" in rest) {
const { url } = rest;
const res = await FileStorage.uploadFromUrl(url, key, acl);
const res = await FileStorage.storeFromUrl(url, key, acl);
if (!res) {
return;
@@ -69,7 +69,7 @@ export default async function attachmentCreator({
);
} else {
const { buffer, type } = rest;
await FileStorage.upload({
await FileStorage.store({
body: buffer,
contentType: type,
contentLength: buffer.length,