mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-16 02:05:04 +01:00
24 lines
395 B
JavaScript
24 lines
395 B
JavaScript
import prisma from 'lib/prisma';
|
|
|
|
export async function getAllWebsites() {
|
|
let data = await prisma.client.website.findMany({
|
|
orderBy: [
|
|
{
|
|
userId: 'asc',
|
|
},
|
|
{
|
|
name: 'asc',
|
|
},
|
|
],
|
|
include: {
|
|
user: {
|
|
select: {
|
|
username: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
|
|
return data.map(i => ({ ...i, user: i.user.username }));
|
|
}
|