9 lines
159 B
TypeScript
9 lines
159 B
TypeScript
import prisma from '@typebot.io/lib/prisma'
|
|
|
|
export const deleteSession = (id: string) =>
|
|
prisma.chatSession.deleteMany({
|
|
where: {
|
|
id,
|
|
},
|
|
})
|