feat: Implement comprehensive course analytics, RBAC with roles and authentication, and dynamic passing thresholds.

This commit is contained in:
2025-12-23 10:12:53 -03:00
parent f592f78b6c
commit 72ddb43fd7
29 changed files with 1433 additions and 231 deletions
+2
View File
@@ -5,6 +5,7 @@ export interface Course {
title: string;
description?: string;
instructor_id: string;
passing_percentage: number;
created_at: string;
}
@@ -72,6 +73,7 @@ export interface User {
id: string;
email: string;
full_name: string;
role: string;
}
export interface AuthResponse {