codecombat/server/models/LevelSystem.coffee

21 lines
708 B
CoffeeScript
Raw Normal View History

2014-01-03 13:32:13 -05:00
mongoose = require('mongoose')
plugins = require('./plugins')
jsonschema = require('../schemas/level_system')
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)