final touches
ci / docker_image (push) Successful in 1m37s
ci / deploy (push) Successful in 16s

This commit is contained in:
2025-01-30 22:12:08 -06:00
parent fa14fe0496
commit 5eca1635f5
11 changed files with 206 additions and 26 deletions
@@ -1,8 +1,8 @@
import type { PageServerLoad } from './$types';
import { getPostingFullData, getPostings } from '$lib/db/index.server';
import { getPostingWithCompanyUser, getPostings } from '$lib/db/index.server';
export const load: PageServerLoad = async ({ params }) => {
return {
posting: await getPostingFullData(parseInt(params.posting))
posting: await getPostingWithCompanyUser(parseInt(params.posting))
};
};