reinitializing codebase and resuming development

This commit is contained in:
Shibi Chakkaravarthy
2026-09-27 00:48:18 +05:30
parent 5e894627f5
commit be7211ac28
23 changed files with 744 additions and 45 deletions
+8
View File
@@ -76,6 +76,14 @@ const schema = new Schema({
type: [contactPersonSchema],
required: true,
},
isApproved: {
type: Boolean,
default: false,
},
isTemp: {
type: Boolean,
default: true,
},
});
export default model("partner", schema);