umami/queries/admin/website/updateWebsite.js

9 lines
154 B
JavaScript
Raw Normal View History

2022-08-28 06:38:35 +02:00
import prisma from 'lib/prisma';
2022-07-12 23:14:36 +02:00
2022-10-08 02:13:03 +02:00
export async function updateWebsite(data, where) {
2022-08-28 06:38:35 +02:00
return prisma.client.website.update({
2022-10-08 02:13:03 +02:00
where,
2022-08-28 06:38:35 +02:00
data,
});
2022-07-12 23:14:36 +02:00
}