mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
9 lines
171 B
JavaScript
9 lines
171 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getAccountById(userId) {
|
|
return prisma.client.account.findUnique({
|
|
where: {
|
|
id: userId,
|
|
},
|
|
});
|
|
}
|