12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- 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,
- },
- 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;
|