somewhere
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
const mongoose = require('mongoose')
|
||||
|
||||
const AnnouncementSchema = mongoose.Schema({
|
||||
title: String,
|
||||
caption: String,
|
||||
seenBy: [mongoose.ObjectId],
|
||||
expireDate: Number,
|
||||
expired: { type: Boolean, default: false },
|
||||
isForAgents: { type: Boolean, default: false },
|
||||
_creator: { type: mongoose.ObjectId, ref: 'User' }
|
||||
})
|
||||
|
||||
module.exports = mongoose.model('Announcement', AnnouncementSchema)
|
||||
Reference in New Issue
Block a user