mirror of
https://github.com/umami-software/umami.git
synced 2025-12-08 05:12:36 +01:00
9 lines
177 B
JavaScript
9 lines
177 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getAccountByUsername(username) {
|
|
return prisma.client.account.findUnique({
|
|
where: {
|
|
username,
|
|
},
|
|
});
|
|
}
|