Fixed issue with accessing user dashboards. Closes #1590

This commit is contained in:
Mike Cao 2022-10-25 15:48:49 -07:00
parent 46a18f2918
commit 8b64ef1a4e
8 changed files with 33 additions and 25 deletions

View file

@ -14,6 +14,7 @@ export async function getAccounts() {
isAdmin: true,
createdAt: true,
updatedAt: true,
accountUuid: true,
},
});
}

View file

@ -1,10 +1,8 @@
import prisma from 'lib/prisma';
export async function getUserWebsites(userId) {
export async function getUserWebsites(where) {
return prisma.client.website.findMany({
where: {
userId,
},
where,
orderBy: {
name: 'asc',
},