mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
170 B
JavaScript
10 lines
170 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function updateWebsite(id, data) {
|
|
return prisma.client.website.update({
|
|
where: {
|
|
id,
|
|
},
|
|
data,
|
|
});
|
|
}
|