2022-08-26 07:20:30 +02:00
|
|
|
import { prisma, runQuery } from 'lib/relational';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
|
|
|
export async function getUserWebsites(user_id) {
|
|
|
|
return runQuery(
|
|
|
|
prisma.website.findMany({
|
|
|
|
where: {
|
|
|
|
user_id,
|
|
|
|
},
|
|
|
|
orderBy: {
|
|
|
|
name: 'asc',
|
|
|
|
},
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
}
|