mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 13:47:33 +01:00
* Began moving group chat to separate model * Fixed lint issue * Updated delete chat with new model * Updated flag chat to support model * Updated like chat to use model * Fixed duplicate code and chat messages * Added note about concat chat * Updated clear flags to user new model * Updated more chat checks when loading get group * Fixed spell test and back save * Moved get chat to json method * Updated flagging with new chat model * Added missing await * Fixed chat user styles. Fixed spell group test * Added new model to quest chat and group plan chat * Removed extra timestamps. Added limit check for group plans * Updated tests * Synced id fields * Fixed id creation * Add meta and fixed tests * Fixed group quest accept test * Updated puppeteer * Added migration * Export vars * Updated comments
27 lines
747 B
JavaScript
27 lines
747 B
JavaScript
import mongoose from 'mongoose';
|
|
import baseModel from '../libs/baseModel';
|
|
|
|
const schema = new mongoose.Schema({
|
|
timestamp: Date,
|
|
user: String,
|
|
text: String,
|
|
contributor: {type: mongoose.Schema.Types.Mixed},
|
|
backer: {type: mongoose.Schema.Types.Mixed},
|
|
uuid: String,
|
|
id: String,
|
|
groupId: {type: String, ref: 'Group'},
|
|
flags: {type: mongoose.Schema.Types.Mixed, default: {}},
|
|
flagCount: {type: Number, default: 0},
|
|
likes: {type: mongoose.Schema.Types.Mixed},
|
|
userStyles: {type: mongoose.Schema.Types.Mixed},
|
|
_meta: {type: mongoose.Schema.Types.Mixed},
|
|
}, {
|
|
minimize: false, // Allow for empty flags to be saved
|
|
});
|
|
|
|
schema.plugin(baseModel, {
|
|
noSet: ['_id'],
|
|
});
|
|
|
|
export const model = mongoose.model('Chat', schema);
|