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