mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 20:57:17 +01:00
8 lines
154 B
JavaScript
8 lines
154 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function updateWebsite(data, where) {
|
|
return prisma.client.website.update({
|
|
where,
|
|
data,
|
|
});
|
|
}
|