mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
13 lines
223 B
JavaScript
13 lines
223 B
JavaScript
import { prisma, runQuery } from 'lib/db/relational';
|
|
|
|
export async function updateAccount(user_id, data) {
|
|
return runQuery(
|
|
prisma.account.update({
|
|
where: {
|
|
user_id,
|
|
},
|
|
data,
|
|
}),
|
|
);
|
|
}
|