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