mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-25 00:28:31 -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
20 lines
718 B
CoffeeScript
20 lines
718 B
CoffeeScript
mongoose = require('mongoose')
|
|
plugins = require('../../plugins/plugins')
|
|
jsonschema = require('./level_system_schema')
|
|
|
|
LevelSystemSchema = new mongoose.Schema {
|
|
description: String
|
|
}, {strict: false}
|
|
|
|
LevelSystemSchema.plugin(plugins.NamedPlugin)
|
|
LevelSystemSchema.plugin(plugins.PermissionsPlugin)
|
|
LevelSystemSchema.plugin(plugins.VersionedPlugin)
|
|
LevelSystemSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description']})
|
|
|
|
LevelSystemSchema.pre 'init', (next) ->
|
|
return next() unless jsonschema.properties?
|
|
for prop, sch of jsonschema.properties
|
|
@set(prop, _.cloneDeep sch.default) if sch.default?
|
|
next()
|
|
|
|
module.exports = LevelSystem = mongoose.model('level.system', LevelSystemSchema)
|