tatorte only available via token

This commit is contained in:
2025-06-23 14:46:09 +02:00
parent 5be47343c4
commit bb98c3656e
10 changed files with 48 additions and 67 deletions

View File

@@ -19,7 +19,7 @@ export const checkIfExactDirectoryExists = (dir: string): Promise<boolean> => {
});
};
export const getContentofTextObject = async (bucket: string, objPath: string) => {
export const getContentOfTextObject = async (bucket: string, objPath: string) => {
const res = await client.getObject(bucket, objPath);
const text = await new Response(res).text();