umami/queries/admin/website/updateWebsite.js

9 lines
154 B
JavaScript
Raw Normal View History

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