mirror of
https://github.com/open-webui/open-webui
synced 2025-04-06 13:45:41 +00:00
refac
This commit is contained in:
parent
7ffa3cb022
commit
6e4820cad8
@ -230,7 +230,9 @@ class FolderTable:
|
|||||||
user_id, folder_child.id
|
user_id, folder_child.id
|
||||||
)
|
)
|
||||||
delete_children(folder_child)
|
delete_children(folder_child)
|
||||||
db.delete(folder_child)
|
|
||||||
|
folder = db.query(Folder).filter_by(id=folder_child.id).first()
|
||||||
|
db.delete(folder)
|
||||||
db.commit()
|
db.commit()
|
||||||
|
|
||||||
delete_children(folder)
|
delete_children(folder)
|
||||||
|
@ -236,10 +236,7 @@ async def delete_folder_by_id(id: str, user=Depends(get_verified_user)):
|
|||||||
if result:
|
if result:
|
||||||
return result
|
return result
|
||||||
else:
|
else:
|
||||||
raise HTTPException(
|
raise Exception("Error deleting folder")
|
||||||
status_code=status.HTTP_400_BAD_REQUEST,
|
|
||||||
detail=ERROR_MESSAGES.DEFAULT("Error deleting folder"),
|
|
||||||
)
|
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
log.exception(e)
|
log.exception(e)
|
||||||
log.error(f"Error deleting folder: {id}")
|
log.error(f"Error deleting folder: {id}")
|
||||||
|
@ -1,5 +1,7 @@
|
|||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { toast } from 'svelte-sonner';
|
import { toast } from 'svelte-sonner';
|
||||||
|
import { v4 as uuidv4 } from 'uuid';
|
||||||
|
|
||||||
import { goto } from '$app/navigation';
|
import { goto } from '$app/navigation';
|
||||||
import {
|
import {
|
||||||
user,
|
user,
|
||||||
@ -125,6 +127,18 @@
|
|||||||
name = `${name} ${i}`;
|
name = `${name} ${i}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Add a dummy folder to the list to show the user that the folder is being created
|
||||||
|
const tempId = uuidv4();
|
||||||
|
folders = {
|
||||||
|
...folders,
|
||||||
|
tempId: {
|
||||||
|
id: tempId,
|
||||||
|
name: name,
|
||||||
|
created_at: Date.now(),
|
||||||
|
updated_at: Date.now()
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const res = await createNewFolder(localStorage.token, name).catch((error) => {
|
const res = await createNewFolder(localStorage.token, name).catch((error) => {
|
||||||
toast.error(error);
|
toast.error(error);
|
||||||
return null;
|
return null;
|
||||||
|
Loading…
Reference in New Issue
Block a user