mirror of
https://github.com/umami-software/umami.git
synced 2026-02-04 04:37:11 +01: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',
|
|
},
|
|
});
|
|
}
|