initial commit.

This commit is contained in:
mntmn
2017-04-07 01:29:05 +02:00
commit 7ff2926578
258 changed files with 83743 additions and 0 deletions

32
models/action.js Normal file
View File

@@ -0,0 +1,32 @@
'use strict';
var mongoose = require('mongoose');
var Schema = mongoose.Schema;
module.exports.actionSchema = mongoose.Schema({
space: {
type: Schema.Types.ObjectId,
ref: 'Space'
},
user: {
type: Schema.Types.ObjectId,
ref: 'User'
},
editor_name: String,
action: String,
object: Schema.Types.Mixed,
created_at: {
type: Date,
default: Date.now
},
updated_at: {
type: Date,
default: Date.now
}
});
module.exports.actionSchema.index({
space: 1,
created_at: 1
});