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