2022-08-28 06:38:35 +02:00
|
|
|
import prisma from 'lib/prisma';
|
2022-07-12 23:14:36 +02:00
|
|
|
|
2022-10-26 01:50:12 +02:00
|
|
|
export async function getUserWebsites(where) {
|
2022-08-28 06:38:35 +02:00
|
|
|
return prisma.client.website.findMany({
|
2022-10-26 01:50:12 +02:00
|
|
|
where,
|
2022-08-28 06:38:35 +02:00
|
|
|
orderBy: {
|
|
|
|
name: 'asc',
|
|
|
|
},
|
|
|
|
});
|
2022-07-12 23:14:36 +02:00
|
|
|
}
|