coyotte508's picture
coyotte508 HF staff
✨ Admin photos list
7069a57
raw
history blame
No virus
248 Bytes
import { collections } from '$lib/server/db';
import type { PageServerLoad } from './types';
export const load: PageServerLoad = async () => {
return {
photos: await collections.pictures.find({ productId: { $exists: false } }).toArray()
};
};