This commit is contained in:
2023-10-29 18:07:00 +05:00
parent d72990ce2c
commit 9c97dbc620
9 changed files with 110 additions and 76 deletions
+7 -1
View File
@@ -5,7 +5,7 @@ const scheduledSessionSchema = new Schema(
companyId: {
type: Schema.Types.ObjectId,
ref: "Company",
required: true,
// required: true,
},
buildId: {
type: Schema.Types.ObjectId,
@@ -36,6 +36,12 @@ const scheduledSessionSchema = new Schema(
type: String,
required: true,
},
adminInviteKey: {
type: String,
},
userInviteKey: {
type: String,
},
},
{
timestamps: true,