mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-05-02 17:07:13 +00:00
patch prisma query expansion on threads
This commit is contained in:
parent
b1a2fa6385
commit
200bd7f061
1 changed files with 8 additions and 5 deletions
|
@ -25,16 +25,19 @@ const WorkspaceThread = {
|
|||
update: async function (prevThread = null, data = {}) {
|
||||
if (!prevThread) throw new Error("No thread id provided for update");
|
||||
|
||||
const validKeys = Object.keys(data).filter((key) =>
|
||||
this.writable.includes(key)
|
||||
);
|
||||
if (validKeys.length === 0)
|
||||
const validData = {};
|
||||
Object.entries(data).forEach(([key, value]) => {
|
||||
if (!this.writable.includes(key)) return;
|
||||
validData[key] = value;
|
||||
});
|
||||
|
||||
if (Object.keys(validData).length === 0)
|
||||
return { thread: prevThread, message: "No valid fields to update!" };
|
||||
|
||||
try {
|
||||
const thread = await prisma.workspace_threads.update({
|
||||
where: { id: prevThread.id },
|
||||
data,
|
||||
data: validData,
|
||||
});
|
||||
return { thread, message: null };
|
||||
} catch (error) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue