minor fix

This commit is contained in:
daniel31x13 2024-07-25 13:57:33 -04:00
parent 6cae2fb634
commit 9d8ae6970c

View File

@ -66,6 +66,14 @@ async function checkFileExistence(path) {
async function indexArchives() {
const links = await prisma.link.findMany({
select: {
id: true,
collectionId: true,
image: true,
pdf: true,
readable: true,
monolith: true,
},
orderBy: { id: "asc" },
});