mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
21 lines
496 B
JavaScript
21 lines
496 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function resetWebsite(id) {
|
|
const { client, transaction } = prisma;
|
|
|
|
return transaction([
|
|
client.pageview.deleteMany({
|
|
where: { session: { website: { id } } },
|
|
}),
|
|
client.eventData.deleteMany({
|
|
where: { event: { session: { website: { id } } } },
|
|
}),
|
|
client.event.deleteMany({
|
|
where: { session: { website: { id } } },
|
|
}),
|
|
client.session.deleteMany({
|
|
where: { website: { id } },
|
|
}),
|
|
]);
|
|
}
|