mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
25 lines
458 B
JavaScript
25 lines
458 B
JavaScript
import { prisma, runQuery } from 'lib/db';
|
|
|
|
export async function getAllWebsites() {
|
|
let data = await runQuery(
|
|
prisma.website.findMany({
|
|
orderBy: [
|
|
{
|
|
user_id: 'asc',
|
|
},
|
|
{
|
|
name: 'asc',
|
|
},
|
|
],
|
|
include: {
|
|
account: {
|
|
select: {
|
|
username: true,
|
|
},
|
|
},
|
|
},
|
|
}),
|
|
);
|
|
return data.map(i => ({ ...i, account: i.account.username }));
|
|
}
|