mirror of
https://github.com/umami-software/umami.git
synced 2026-02-05 21:27:20 +01:00
9 lines
169 B
JavaScript
9 lines
169 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getAccountById(user_id) {
|
|
return prisma.client.account.findUnique({
|
|
where: {
|
|
user_id,
|
|
},
|
|
});
|
|
}
|