Initial commit: EduBox V2 platform

This commit is contained in:
root
2026-06-06 19:55:41 +00:00
commit 0a73a70820
69 changed files with 5634 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import "next-auth";
declare module "next-auth" {
interface Session {
user: {
id: string;
email: string;
role: string;
establishmentId?: string;
};
}
interface User {
id: string;
email: string;
role: string;
establishmentId?: string;
}
}
declare module "next-auth/jwt" {
interface JWT {
role?: string;
establishmentId?: string;
}
}