You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
938 B
27 lines
938 B
// chat-room-invite.js
|
|
// Copyright (C) 2024 DTP Technologies, LLC
|
|
// All Rights Reserved
|
|
|
|
'use strict';
|
|
|
|
import mongoose from 'mongoose';
|
|
const Schema = mongoose.Schema;
|
|
|
|
const INVITE_STATUS_LIST = ['new', 'viewed', 'accepted', 'rejected'];
|
|
|
|
const InviteeSchema = new Schema({
|
|
user: { type: Schema.ObjectId, ref: 'User' },
|
|
email: { type: String },
|
|
});
|
|
|
|
const ChatRoomInviteSchema = new Schema({
|
|
created: { type: Date, default: Date.now, required: true, index: 1, expires: '7d' },
|
|
token: { type: String, required: true, unique: true },
|
|
owner: { type: Schema.ObjectId, required: true, index: 1, ref: 'User' },
|
|
room: { type: Schema.ObjectId, required: true, index: 1, ref: 'ChatRoom' },
|
|
member: { type: InviteeSchema, required: true },
|
|
status: { type: String, enum: INVITE_STATUS_LIST, default: 'new', required: true },
|
|
message: { type: String },
|
|
});
|
|
|
|
export default mongoose.model('ChatRoomInvite', ChatRoomInviteSchema);
|