dev
ci / docker_image (push) Successful in 1m38s
ci / deploy (push) Successful in 18s

This commit is contained in:
2025-01-29 22:38:07 -06:00
parent be83b7570d
commit fa14fe0496
65 changed files with 3318 additions and 708 deletions
@@ -0,0 +1,8 @@
import type { PageServerLoad } from './$types';
import { getPostingFullData, getPostings } from '$lib/db/index.server';
export const load: PageServerLoad = async ({ params }) => {
return {
posting: await getPostingFullData(parseInt(params.posting))
};
};