Add complaint

This commit is contained in:
Swift
2024-02-02 16:11:14 +03:30
parent cb3f8fa902
commit 1ca41258a6
6 changed files with 31 additions and 6 deletions
+3 -1
View File
@@ -11,7 +11,9 @@ const ComplaintSchema = mongoose.Schema({
email: String,
receptionCode: String,
caption: String,
callType: Boolean
callType: Boolean,
read: { type: Boolean, default: false },
})