mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01: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,
|
|
});
|
|
}
|