ThreadCount Community edition
Release / release (push) Has been skipped

Uniform stock management for healthcare linen rooms: the coordinator app, the phone counter and the staff app, for your own server. Built from 794bab5 on 2026-09-16. Licensed under the Functional Source License (FSL-1.1-ALv2).
This commit is contained in:
ThreadCount
2026-09-17 05:49:16 +10:00
commit f72f0626b0
481 changed files with 59411 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
import { redirect } from "next/navigation";
import { prisma } from "@/lib/db";
import { currentStaff } from "@/lib/staffsession";
import { pushConfigured } from "@/lib/push";
import AccountScreen from "@/components/screens/Account";
export const dynamic = "force-dynamic";
export default async function MyAccount() {
const sess = await currentStaff();
if (!sess) redirect("/my/signin");
// No row means every default, which is what the schema says and what the sender assumes. The
// switches are read for this session's own staff member and for nobody else — notify.prefs
// writes the same way, and takes no staffId at all.
const pref = await prisma.staffNotifyPref.findUnique({ where: { staffId: sess.staffId } });
return (
<AccountScreen
email={sess.email}
prefs={{
approved: pref?.approved ?? true,
ready: pref?.ready ?? true,
round: pref?.round ?? true,
kitcheck: pref?.kitcheck ?? true,
waiting: pref?.waiting ?? true,
}}
// Nothing can be sent at all without a key on the server, and the screen says so rather than
// offering switches that would do nothing.
pushReady={pushConfigured()}
/>
);
}