Aktueller Stand

This commit is contained in:
2026-01-15 16:24:09 +01:00
parent 5d2630a02f
commit 46eae2a2a9
70 changed files with 7866 additions and 447 deletions

5
next-auth.d.ts vendored
View File

@@ -3,9 +3,12 @@ import NextAuth from "next-auth";
declare module "next-auth" {
interface Session {
user?: {
id?: string;
name?: string | null;
email?: string | null;
role?: "ADMIN" | "USER";
role?: "SUPERADMIN" | "ADMIN" | "USER";
status?: "PENDING" | "ACTIVE";
emailVerified?: boolean;
};
}
}