final changes

This commit is contained in:
sanikapendurkar
2025-06-10 18:38:01 +05:30
parent 56bbb4596f
commit dd2ceadee5
30 changed files with 1455 additions and 392 deletions

16
backend/models/Meeting.js Normal file
View File

@@ -0,0 +1,16 @@
const mongoose = require("mongoose");
const meetingSchema = new mongoose.Schema({
program: String,
department: String,
subject: String,
body: String,
agenda: [String],
date: String,
startTime: String,
endTime: String,
recipients: [String],
attachments: [{ filename: String, path: String }],
});
module.exports = mongoose.model("Meeting", meetingSchema);