codecombat/server/levels/components/LevelComponent.coffee
Sébastien Moratinos 729cd300b7 server reorganize files and folder by features
- 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
2014-01-23 01:01:40 +01:00

21 lines
775 B
CoffeeScript

mongoose = require('mongoose')
plugins = require('../../plugins/plugins')
jsonschema = require('./level_component_schema')
LevelComponentSchema = new mongoose.Schema {
description: String
system: String
}, {strict: false}
LevelComponentSchema.plugin(plugins.NamedPlugin)
LevelComponentSchema.plugin(plugins.PermissionsPlugin)
LevelComponentSchema.plugin(plugins.VersionedPlugin)
LevelComponentSchema.plugin(plugins.SearchablePlugin, {searchable: ['name', 'description', 'system']})
LevelComponentSchema.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 = LevelComponent = mongoose.model('level.component', LevelComponentSchema)