obs-portal/models/Comment.js
2020-11-21 19:41:25 +01:00

23 lines
540 B
JavaScript

const mongoose = require('mongoose');
const CommentSchema = new mongoose.Schema(
{
body: String,
author: { type: mongoose.Schema.Types.ObjectId, ref: 'User' },
article: { type: mongoose.Schema.Types.ObjectId, ref: 'Article' },
},
{ timestamps: true },
);
// Requires population of author
CommentSchema.methods.toJSONFor = function (user) {
return {
id: this._id,
body: this.body,
createdAt: this.createdAt,
author: this.author.toProfileJSONFor(user),
};
};
mongoose.model('Comment', CommentSchema);