coursePanel dropdown, 6 emails per subject

This commit is contained in:
amNobodyyy
2025-03-07 02:09:15 +05:30
parent 4a3154752f
commit d8fe5fcc42
8 changed files with 638 additions and 430 deletions

View File

@@ -6,6 +6,7 @@ const FacultySchema = new mongoose.Schema({
email: { type: String, required: true },
department: { type: String, required: true },
program: { type: String, required: true },
courses: [{ type: String }],
});
module.exports = mongoose.model("Faculty", FacultySchema);