mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
729cd300b7
- move and rename files - use associative arrays which store handlers for 'dynamically' load module from de db route - store models_path in test/server/common, a global model variable has the same name that the filename of the model
25 lines
No EOL
831 B
CoffeeScript
25 lines
No EOL
831 B
CoffeeScript
# TODO: not updated since rename from level_instance, or since we redid how all models are done; probably busted
|
|
|
|
mongoose = require('mongoose')
|
|
plugins = require('../../plugins/plugins')
|
|
jsonschema = require('./level_session_schema')
|
|
|
|
LevelSessionSchema = new mongoose.Schema({
|
|
created:
|
|
type: Date
|
|
'default': Date.now
|
|
}, {strict: false})
|
|
LevelSessionSchema.plugin(plugins.PermissionsPlugin)
|
|
|
|
LevelSessionSchema.pre 'init', (next) ->
|
|
# TODO: refactor this into a set of common plugins for all models?
|
|
return next() unless jsonschema.properties?
|
|
for prop, sch of jsonschema.properties
|
|
@set(prop, _.cloneDeep(sch.default)) if sch.default?
|
|
next()
|
|
|
|
LevelSessionSchema.pre 'save', (next) ->
|
|
@set('changed', new Date())
|
|
next()
|
|
|
|
module.exports = LevelSession = mongoose.model('level.session', LevelSessionSchema) |