mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
refac
This commit is contained in:
parent
4ad7a9bb9c
commit
a5c359aede
1 changed files with 25 additions and 24 deletions
|
|
@ -61,30 +61,31 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
const importChatsHandler = async (_chats) => {
|
const importChatsHandler = async (_chats) => {
|
||||||
const chats = _chats.map((chat) => {
|
const res = await importChats(
|
||||||
if (chat.chat) {
|
localStorage.token,
|
||||||
return {
|
_chats.map((chat) => {
|
||||||
chat: chat.chat,
|
if (chat.chat) {
|
||||||
meta: chat.meta ?? {},
|
return {
|
||||||
pinned: false,
|
chat: chat.chat,
|
||||||
folder_id: chat?.folder_id ?? null,
|
meta: chat.meta ?? {},
|
||||||
created_at: chat?.created_at ?? null,
|
pinned: false,
|
||||||
updated_at: chat?.updated_at ?? null
|
folder_id: chat?.folder_id ?? null,
|
||||||
};
|
created_at: chat?.created_at ?? null,
|
||||||
} else {
|
updated_at: chat?.updated_at ?? null
|
||||||
// Legacy format
|
};
|
||||||
return {
|
} else {
|
||||||
chat: chat,
|
// Legacy format
|
||||||
meta: {},
|
return {
|
||||||
pinned: false,
|
chat: chat,
|
||||||
folder_id: null,
|
meta: {},
|
||||||
created_at: chat?.created_at ?? null,
|
pinned: false,
|
||||||
updated_at: chat?.updated_at ?? null
|
folder_id: null,
|
||||||
};
|
created_at: chat?.created_at ?? null,
|
||||||
}
|
updated_at: chat?.updated_at ?? null
|
||||||
});
|
};
|
||||||
|
}
|
||||||
const res = await importChats(localStorage.token, chats);
|
})
|
||||||
|
);
|
||||||
if (res) {
|
if (res) {
|
||||||
toast.success(`Successfully imported ${res.length} chats.`);
|
toast.success(`Successfully imported ${res.length} chats.`);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue