mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
10 lines
183 B
JavaScript
10 lines
183 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getUserWebsites(where) {
|
|
return prisma.client.website.findMany({
|
|
where,
|
|
orderBy: {
|
|
name: 'asc',
|
|
},
|
|
});
|
|
}
|