Update index.ts

This commit is contained in:
Classic298
2025-06-21 13:56:22 +02:00
committed by GitHub
parent 05ffb9363f
commit e97bd47336

View File

@@ -92,7 +92,11 @@ export const getFolderById = async (token: string, id: string) => {
return res;
};
export const updateFolderNameById = async (token: string, id: string, name: string) => {
export const updateFolderById = async (
token: string,
id: string,
folderData: { name: string; system_prompt?: string }
) => {
let error = null;
const res = await fetch(`${WEBUI_API_BASE_URL}/folders/${id}/update`, {
@@ -102,9 +106,7 @@ export const updateFolderNameById = async (token: string, id: string, name: stri
'Content-Type': 'application/json',
authorization: `Bearer ${token}`
},
body: JSON.stringify({
name: name
})
body: JSON.stringify(folderData)
})
.then(async (res) => {
if (!res.ok) throw await res.json();