1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- const { boolean } = require('joi');
- const mongoose = require('mongoose');
- const { Schema, model, SchemaTypes } = mongoose;
- const mongoosePaginate = require('mongoose-paginate-v2');
- mongoose.Types.ObjectId.isValid();
- const chatSchema = new Schema(
- {
- companionId: {
- type: String,
- },
- name: {
- type: String,
- default: null,
- },
- lastName: {
- type: String,
- default: null,
- },
- originalName: {
- type: String,
- default: null,
- },
- originalLastName: {
- type: String,
- default: null,
- },
- avatarUrl: {
- type: String,
- default: null,
- },
- avatarsArr: {
- type: Array,
- default: [],
- },
- color: {
- type: String,
- default: null,
- },
- online: {
- type: String,
- default: null,
- },
- lastMessage: {
- type: String,
- default: null,
- },
- lastMessageCreatedAt: {
- type: String,
- default: null,
- },
- mute: {
- type: Boolean,
- default: false,
- },
- seen: {
- type: Number,
- default: 0,
- },
- sort: {
- type: Boolean,
- default: false,
- },
- total: {
- type: Number,
- default: 0,
- },
- watched: {
- type: Boolean,
- default: false,
- },
- typing: {
- type: Boolean,
- default: false,
- },
- number: {
- type: String,
- min: 8,
- max: 14,
- },
- owner: {
- type: SchemaTypes.ObjectId,
- ref: 'user',
- },
- },
- { timestamps: true }
- );
- chatSchema.plugin(mongoosePaginate);
- const Chat = model('chat', chatSchema);
- module.exports = Chat;
|