From fc4f281408c56ab12db571a470456212a479edf5 Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 18 Sep 2025 01:32:40 -0400 Subject: wip: zen --- cloud/app/src/context/auth.session.ts | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100644 cloud/app/src/context/auth.session.ts (limited to 'cloud/app/src/context/auth.session.ts') diff --git a/cloud/app/src/context/auth.session.ts b/cloud/app/src/context/auth.session.ts deleted file mode 100644 index 609bc364b..000000000 --- a/cloud/app/src/context/auth.session.ts +++ /dev/null @@ -1,23 +0,0 @@ -import { useSession } from "vinxi/http" - -export interface AuthSession { - account?: Record< - string, - { - id: string - email: string - } - > - current?: string -} - -export function useAuthSession() { - return useSession({ - password: "0".repeat(32), - name: "auth", - cookie: { - secure: false, - httpOnly: true, - }, - }) -} -- cgit v1.2.3