feat: Add bulk student enrollment functionality to courses with new API endpoint and UI.

This commit is contained in:
2026-02-17 22:50:17 -03:00
parent f9e78a265a
commit 4c96d6b225
6 changed files with 281 additions and 7 deletions
+1
View File
@@ -51,6 +51,7 @@ async fn main() {
let protected_routes = Router::new()
.route("/enroll", post(handlers::enroll_user))
.route("/bulk-enroll", post(handlers::bulk_enroll_users))
.route("/enrollments/{id}", get(handlers::get_user_enrollments))
.route(
"/payments/preference",