| import { Schema, Document } from 'mongoose'; |
|
|
| export interface IBanner extends Document { |
| bannerId: string; |
| message: string; |
| displayFrom: Date; |
| displayTo?: Date; |
| type: 'banner' | 'popup'; |
| isPublic: boolean; |
| } |
|
|
| const bannerSchema = new Schema<IBanner>( |
| { |
| bannerId: { |
| type: String, |
| required: true, |
| }, |
| message: { |
| type: String, |
| required: true, |
| }, |
| displayFrom: { |
| type: Date, |
| required: true, |
| default: Date.now, |
| }, |
| displayTo: { |
| type: Date, |
| }, |
| type: { |
| type: String, |
| enum: ['banner', 'popup'], |
| default: 'banner', |
| }, |
| isPublic: { |
| type: Boolean, |
| default: false, |
| }, |
| }, |
| { timestamps: true }, |
| ); |
|
|
| export default bannerSchema; |
|
|