Move working documents to its own area, rename dashboard

This commit is contained in:
2026-04-29 01:21:16 +12:00
parent 7e9663fa06
commit 761ebb050d
32 changed files with 1779 additions and 526 deletions
+4 -2
View File
@@ -1,4 +1,4 @@
import { hasStoredClientSession } from '$lib/session';
import { getStoredClientSession, hasModuleAccess, hasStoredClientSession } from '$lib/session';
import { api } from '$lib/api';
export async function load({ fetch }) {
@@ -8,9 +8,11 @@ export async function load({ fetch }) {
};
}
const session = getStoredClientSession();
try {
return {
rawMaterials: await api.rawMaterials(fetch)
rawMaterials: hasModuleAccess(session, 'mix_master') && hasModuleAccess(session, 'raw_materials') ? await api.rawMaterials(fetch) : []
};
} catch {
return {