mirror of
https://github.com/ENSL/ensl_gathers.git
synced 2024-11-10 15:21:56 +00:00
31 lines
713 B
JavaScript
31 lines
713 B
JavaScript
"use strict";
|
|
|
|
var mongoose = require("mongoose");
|
|
var Schema = mongoose.Schema;
|
|
|
|
var archivedGatherSchema = new Schema({
|
|
createdAt: { type: Date, default: Date.now },
|
|
gather: { type: Schema.Types.Mixed, required: true }
|
|
});
|
|
|
|
archivedGatherSchema.index({ createdAt: -1 });
|
|
|
|
archivedGatherSchema.static({
|
|
recent: function (callback) {
|
|
this
|
|
.where({})
|
|
.sort({createdAt: -1})
|
|
.limit(5)
|
|
.exec(callback);
|
|
},
|
|
archive: function (gather, callback) {
|
|
// Do not try to fix this
|
|
// failed attempts to fix this: 1
|
|
let data = JSON.parse(JSON.stringify(gather.toJson()));
|
|
this.create({
|
|
gather: data
|
|
}, callback);
|
|
}
|
|
});
|
|
|
|
module.exports = mongoose.model("ArchivedGather", archivedGatherSchema);
|